Honest scorecard
Honest gateOne call, one verdict: is this model ready to ship?
df = datasets.breast_cancer()
model = breezeml.fit(df, "diagnosis")
breezeml.report(model, df) # -> SHIP / WARN / STOPExamples
A journey view names the scene it belongs to; a code view shows the real call. Use the playground to run live scikit-learn examples in your browser through Pyodide.
The playground runs real Python, pandas, numpy, and scikit-learn in this tab.
Run BreezeML in your browser →One call, one verdict: is this model ready to ship?
df = datasets.breast_cancer()
model = breezeml.fit(df, "diagnosis")
breezeml.report(model, df) # -> SHIP / WARN / STOPRank the classifiers, tune the winner, read an honest card.
df = datasets.iris()
model = breezeml.fit(df, "species")
model.report(df)
model.card("MODEL_CARD.md")Predict a number, with honest error bounds.
df = datasets.diabetes()
model, _ = breezeml.regressors.random_forest(df, "target")
breezeml.conformal.conformal_regressor(model, calib, "target")Nine algorithms, from k-means to HDBSCAN.
res = breezeml.clustering.kmeans(df, n_clusters=3)
print(res["silhouette"])Know when production data drifts from training.
breezeml.drift.check(model, new_df)
# live GET /drift endpoint in every deployed APIPer-group metrics and a four-fifths rule verdict.
breezeml.fairness.report(model, df, sensitive="gender")Agents train and explain with safe defaults.
pip install breezeml[mcp]
claude mcp add breezeml -- breezeml-mcp