TimeSeriesSplit fold, held out of training. Until the 2025 season ingests, 2024 is the proxy holdout; the scoreboard promotes the new season automatically the moment it arrives. Every number is read from the model artefacts, not hand-typed.
What it shows
Three panels score the models on unseen laps:- Predicted-vs-actual scatter: each point is one lap. The x-axis is the actual next-lap degradation jump; the y-axis is the model p50 prediction. Points on the 45° diagonal are perfect calls. The p10 / p90 band is the 80% conformal envelope.
- Interval coverage rug: empirical coverage is the fraction of laps where the actual jump falls inside [p10, p90]. The target is 80% (conformal calibration from the training fold). Green bars hit; red bars miss.
- Cliff-class confusion matrix: predicted laps-until-cliff class (rows) versus actual class (columns), row-normalised so each cell’s intensity is the fraction of that predicted class landing in each actual bucket. The teal diagonal is correct; red off-diagonal is error.
All numbers are read from
mart_degradation_predictions.parquet, joined to fct_cliff_prediction_features for the actuals. No values are hand-typed.How to use it
- Read the scatter’s spread around the diagonal tight is well-calibrated; a tilt means systematic over- or under-prediction.
- Check the coverage rug against 80% consistent green means the intervals are honest.
- Read the confusion diagonal a strong teal diagonal means the cliff classifier rarely confuses adjacent classes.
- Re-check after a season ingests the holdout fold advances automatically.
Reading the signal correctly
This is out-of-sample by construction the 2024 fold never appears in training so the scoreboard is the honest measure of the models, not their in-sample fit. The conformal band targets 80% coverage by design, so slight over-coverage is expected and healthy.Data source
The chart readsmart_degradation_predictions (the held-out predictions), joined to fct_cliff_prediction_features for actuals, via DuckDB-Wasm in the browser.
The evaluation fold is the 2024 season (proxy holdout until 2025 ingests).
For the full evaluation methodology, see the ML validation page.