sweep: match.total_corners >= 10
β lab Β· AUC 0.524 (no real pattern β honest result) Β· ran 7/4/2026
What this is: Asks which pre-match factors drive one specific outcome, using a walk-forward model and permutation importance.
| Factor | Importance | Direction | Survives all eras? |
|---|
| market.p_over25 | 0.0059 | β +0.084 | β³ yes |
| home__team.corners_against_avg_l5 | 0.0044 | β +0.035 | β³ yes |
| match.ref_fouls_avg | 0.0043 | β -0.003 | no |
| away__team.goals_volatility_l10 | 0.0034 | β +0.005 | no |
| match.state_gap | 0.0033 | β +0.021 | β³ yes |
| away__team.state_index | 0.0032 | β -0.014 | no |
| home__team.dominance_l5 | 0.0030 | β +0.004 | no |
| away__team.cards_avg_l5 | 0.0027 | β -0.025 | no |
| away__team.elo | 0.0027 | β -0.021 | no |
| home__team.ht_lead_rate_l20 | 0.0024 | β +0.017 | no |
| match.humidity_pct | 0.0020 | β +0.007 | no |
| home__team.goals_volatility_l10 | 0.0019 | β +0.018 | no |
Reading the columnswhat each number actually means
| AUC | predictability: 0.50 = coin flip, ~0.70 = ceiling for sports |
| Importance | how much the model leans on this factor (permutation importance) |
| Direction | sign of the raw correlation with the outcome |
| Survives all eras | effect points the same way in every historical era |
Spec Β· the reproducible recipe
{
"name": "sweep: match.total_corners >= 10",
"sport": "football",
"target": {
"op": ">=",
"value": 10,
"metric": "match.total_corners"
},
"features": "all"
}