BreezeML

DawnFirst Model

Define the task. Build your first model.

Dawn is about clarity. Start with a simple dataset and a strong baseline. Establish a reliable benchmark you can build on.

Garden Path
Your progress

The Dawn · write your first model

Python ⌄
from breezeml import datasets, fit, predict

# 1. Load a DataFrame (the one you picked, live)
df = datasets.load(dataset)

# 2. Name the target - that's the whole config
model = fit(df, target)          # RandomForest, 5-fold CV

# 3. Read honest, cross-validated scores
model.evaluate()                 # accuracy, F1, ROC AUC
model.feature_importances_       # what mattered most
✓ Completed in 1.2s

Results · Random Forest, 5-fold CV, live

Accuracy
-
Macro F1
-
ROC AUC
-
Fit time
-