Classification
Lantern courtRank 22 classifiers, tune the winner, read an honest card.
df = datasets.iris()
model, report = breezeml.auto(df, "species", explain_decisions=True)
breezeml.classifiers.compare(df, "species")Examples
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 →Rank 22 classifiers, tune the winner, read an honest card.
df = datasets.iris()
model, report = breezeml.auto(df, "species", explain_decisions=True)
breezeml.classifiers.compare(df, "species")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