A binary classification model that predicts whether it will rain tomorrow in Australia, trained on the classic weatherAUS dataset.
📊 Model Performance
Metric
Score
Accuracy
see metrics.json
Precision
see metrics.json
Recall
see metrics.json
F1 Score
see metrics.json
ROC-AUC
see metrics.json
⚠️ This is an imbalanced classification problem (~78% No Rain, ~22% Rain).
F1 and ROC-AUC are more meaningful than accuracy alone.
The model uses class_weight="balanced" to handle this imbalance.