sweep: match.total_cards >= 3
β lab Β· AUC 0.565 (weak signal) Β· 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? |
|---|
| away__team.cards_avg_l5 | 0.0030 | β +0.076 | β³ yes |
| away__team.travel_km | 0.0020 | β -0.029 | no |
| match.stakes | 0.0018 | β -0.029 | β³ yes |
| away__team.matches_since_clean_sheet | 0.0014 | β -0.010 | no |
| home__team.cards_avg_l5 | 0.0013 | β +0.075 | β³ yes |
| home__team.conversion_l5 | 0.0011 | β -0.018 | no |
| away__team.goals_volatility_l10 | 0.0011 | β +0.020 | β³ yes |
| home__team.venue_ppg_l5 | 0.0011 | β -0.004 | no |
| away__team.conversion_l5 | 0.0011 | β -0.006 | no |
| match.elo_gap | 0.0009 | β -0.042 | β³ yes |
| home__team.state_index | 0.0009 | β +0.002 | no |
| away__team.matches_since_blank | 0.0008 | β +0.020 | 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_cards >= 3",
"sport": "football",
"target": {
"op": ">=",
"value": 3,
"metric": "match.total_cards"
},
"features": "all"
}