What a tyre cliff is
The cliff is the lap at which a compound’s grip deteriorates sharply past its working window. Before the cliff the degradation curve is gradual and manageable. After it, pace loss accelerates in the compound polynomial adds pace delta fast. The total pace loss from new tyre to post-cliff can reach 1.5–2.5 s on a Soft compound at a high-wear circuit. The cliff lap is not the same for every stint on the same compound. It shifts with thermal history, how much dirty air the tyre absorbed, ambient conditions, fuel load, and compound generation. Knowing the population average is a good prior; acting on it without updating for real conditions is how strategy calls go wrong.Why the population prior is not enough
The methodology layer fits a Kaplan-Meier survival curve per(circuit, compound, season) and stores the median cliff onset in dim_compounds_season. That is the right tool for a population-level question, and it feeds the decomposition’s compound term honestly.
But it answers the average case. The real cliff for a given stint shifts with:
- Thermal history how hard the tyre has been pushed, measured as cumulative surface and bulk thermal load
- Dirty-air exposure laps spent in another car’s wake overheat the tyre surface
- Ambient and air density a hot, thin-air afternoon cliffs earlier than a cool morning session
- Fuel load a heavy car early in the stint loads the tyre differently than a light car at the same tyre age
- Compound generation 2018 legacy compounds behave differently from the 2019+ range
The cliff onset τ stored in
dim_compounds_season is the population median for each (circuit, compound, season) group. The real cliff for any individual stint varies around it based on actual conditions. Use the ML predictions (described below) when you need a per-stint estimate.Kaplan-Meier cliff detection
How each stint becomes an observation
Each stint contributes one observation to the survival analysis. A stint either reaches the cliff (an event) or ends before it because the team pitted first (a censored observation). The Kaplan-Meier product-limit estimator turns these into a survival function the probability that a tyre is still in its working window at lap : Here is the number of stints still at risk just before lap , and is the number that cliff (the events) at . The cliff onset estimate is the median survival lap the first lap where . The censoring treatment is critical, and it lives in the at-risk count . A stint that pits on lap 18 is not a failed cliff at lap 18 it is a censored observation at lap 17: it leaves the at-risk set without ever contributing an event . Treating it as an event instead would inflate the ratios and systematically underestimate cliff onset across every circuit-compound group. This is the same estimator used in clinical trials for time-to-event outcomes; the mathematical guarantee on handling censored observations is why it is the right tool here.Where cliff parameters live
Cliff parameters are stored indim_compounds_season one row per (circuit, compound, season). The current seeds cover 401 circuit-compound groups across 2018–2024. These parameters feed directly into the compound polynomial in the decomposition, specifically the cliff onset and the post-cliff acceleration coefficient .
What the ML layer adds
The ML layer turns the population prior into a per-lap, per-stint prediction. On every lap of every stint, it reads the actual conditions thermal load, dirty-air share, fuel state, compound generation, and more and outputs three forward-looking predictions from the same feature row.The three prediction targets
next_lap_degradation_jump_s The fuel-corrected pace change the next lap will show, in seconds. This is modelled as a quantile trio (p10 / p50 / p90) so strategy sees a median estimate and a calibrated uncertainty band. Note that this target is legitimately negative roughly 44% of the time: a tyre coming into its working window, or recovering after an out-lap, genuinely gains pace.
laps_until_cliff_class A 4-way classification bucket: 0_to_2, 3_to_5, 6_plus, or none_in_stint, set by the first lap in the remaining stint where the detrended pace jump crosses 1.0s. About 76% of laps carry none_in_stint, so the classifier trains with balanced class weights to prevent the rare imminent-cliff windows-the highest-value prediction for race strategy-from being drowned out by the majority class.
remaining_stint_life_laps A synthesised, non-negative count of usable laps remaining in the stint. This feeds the strategy view’s “this set is done in approximately N laps” readout.
For full details on feature engineering, training, validation, and model cards, see the ML models reference.
Methodology
How Kaplan-Meier cliff detection fits into the sequential estimation pipeline
Limitations
Known constraints on tyre coefficient quality and ML cliff prediction accuracy
Reference
Where the fitted cliff coefficients live and how the survival fitter promotes them