Datasets:
observable_state string | latent_instability_score float64 | cross_coupling_intensity float64 | hidden_state_index float64 | activation_threshold_distance float64 | degradation_acceleration float64 | pace_management_fragility float64 | track_evolution_pressure float64 | stabilization_buffer float64 | label_stint_collapse_dynamics int64 |
|---|---|---|---|---|---|---|---|---|---|
stable | 0.86 | 0.82 | 0.87 | 0.16 | 0.81 | 0.79 | 0.8 | 0.28 | 1 |
managed | 0.74 | 0.7 | 0.75 | 0.27 | 0.72 | 0.7 | 0.73 | 0.36 | 1 |
balanced | 0.48 | 0.45 | 0.49 | 0.59 | 0.53 | 0.52 | 0.54 | 0.63 | 0 |
cooling-stable | 0.31 | 0.3 | 0.32 | 0.78 | 0.36 | 0.35 | 0.37 | 0.73 | 0 |
managed | 0.68 | 0.64 | 0.69 | 0.33 | 0.69 | 0.68 | 0.7 | 0.4 | 1 |
stable | 0.57 | 0.6 | 0.58 | 0.4 | 0.61 | 0.6 | 0.62 | 0.58 | 0 |
no-visible-failure | 0.83 | 0.84 | 0.82 | 0.2 | 0.81 | 0.8 | 0.82 | 0.3 | 1 |
cooling-stable | 0.28 | 0.34 | 0.27 | 0.82 | 0.38 | 0.37 | 0.39 | 0.74 | 0 |
balanced | 0.62 | 0.58 | 0.63 | 0.38 | 0.66 | 0.64 | 0.67 | 0.46 | 0 |
stable | 0.88 | 0.78 | 0.85 | 0.15 | 0.83 | 0.81 | 0.84 | 0.27 | 1 |
What this repo does
This dataset detects hidden instability in F1 stint performance before visible collapse occurs.
It identifies when degradation acceleration, pace-management fragility, and track-evolution pressure are interacting in a way that will produce stint collapse dynamics.
Core structure
This dataset models:
- latent instability across a stint
- degradation acceleration under load
- pace-management fragility
- cross-coupled stint collapse risk
Prediction target
Binary:
1→ stint collapse likely due to hidden instability plus interacting pressures0→ instability remains contained or below meaningful activation threshold
Target column:
label_stint_collapse_dynamics
Row structure
Each row represents an F1 stint state.
Columns:
- observable_state
- latent_instability_score
- cross_coupling_intensity
- hidden_state_index
- activation_threshold_distance
- degradation_acceleration
- pace_management_fragility
- track_evolution_pressure
- stabilization_buffer
Column meaning
degradation_acceleration
How quickly the tyre and pace profile are worsening across the stint.
pace_management_fragility
How unstable the current pace-management approach has become.
track_evolution_pressure
How strongly changing track conditions are amplifying instability.
key dynamic
Collapse occurs when:
- degradation begins accelerating
- pace management becomes fragile
- track evolution increases pressure
- stabilization buffer cannot compensate
Label logic
label = 1 if latent_instability_score >= 0.60 AND cross_coupling_intensity >= 0.60 AND hidden_state_index >= 0.60 AND activation_threshold_distance <= 0.35 AND degradation_acceleration >= 0.68 AND pace_management_fragility >= 0.68 AND track_evolution_pressure >= 0.70 AND track_evolution_pressure > stabilization_buffer else 0
Files
data/train.csvdata/tester.csvscorer.pyREADME.md
Evaluation
Primary metric:
- missed_latent_activation_rate
Secondary metric:
- false_activation_rate
Additional reported metrics:
- accuracy
- precision
- recall
- f1
The scorer expects binary predictions only.
No score threshold is applied.
The scorer is deterministic and includes audit metadata:
- scorer version
- scorer id
- UTC evaluation timestamp
- SHA-256 hash of reference file
- SHA-256 hash of predictions file
Example scorer call
python scorer.py reference.csv predictions.csv
Where:
reference.csv contains a label_... target column
predictions.csv contains one of: prediction, pred, label, or output
Why this matters
Most race analysis detects stint collapse after it has already become visible through lap-time drop-off, tyre fall-off, or strategic vulnerability.
This dataset class targets hidden instability before overt stint collapse becomes active in race dynamics.
That makes it useful for:
live stint-risk monitoring
pit-window timing
pace-management review
degradation acceleration detection
race collapse prevention
License
MIT
Structural Note
This dataset belongs to the Clarus latent detection layer.
It is designed to detect instability during formation, before overt stint collapse becomes active in race behavior.
Production Deployment
Applicable to:
F1 teams
race strategy groups
simulation workflows
motorsport analytics systems
live performance monitoring
Enterprise and Research Collaboration
Suitable for:
teams
analytics companies
simulation groups
motorsport R&D
race engineering workflows
Label check
- rows 1, 2, 5, 7, and 10 satisfy the positive rule
- row 9 stays negative because `cross_coupling_intensity` is below `0.60`
- Downloads last month
- 15