| # | Model | Score | Steps | In tok | Out tok | Avg cost | Avg time |
|---|---|---|---|---|---|---|---|
| 1 | Grok 4.6 | 0.7451 ±0.301 | 418 | 97.7M | 833k | $102.30 | 8.0h |
| 2 | Qwen3.8-Max | 0.5656 ±0.294 | 333 | 57.0M | 560k | $18.16 | 10.1h |
| 3 | Claude Fable 5.1 | 0.5193 ±0.440 | 205 | 51.0M | 309k | $33.00 | 6.1h |
| 4 | Muse Spark 1.2 | 0.5070 ±0.381 | 149 | 29.0M | 328k | $6.56 | 1.8h |
| 5 | DeepSeek V4 Flash Exp | 0.3776 ±0.435 | 316 | 83.5M | 365k | $1.70 | 7.0h |
| 6 | Kimi K3 | 0.3133 ±0.394 | 343 | 99.2M | 407k | $43.65 | 15.4h |
| 7 | GPT-5.6 | 0.2171 ±0.329 | 253 | 66.0M | 166k | $64.71 | 3.5h |
| 8 | Inkling | 0.1769 ±0.391 | 118 | 3.9M | 52k | $3.95 | 1.5h |
| 9 | Gemini 3.7 Flash | 0.1099 ±0.041 | 114 | 11.9M | 156k | $2.33 | 1.2h |
| 10 | GLM-5.3 | 0.0756 ±0.057 | 248 | 59.0M | 329k | $18.22 | 7.1h |
Measuring the Higgs signal strength mu (how many signal events appear relative to the Standard Model expectation) is a canonical LHC analysis. The hard part is not the point estimate but the uncertainty: detector effects and modeling assumptions (systematics) shift the event distributions in ways that are only partly known, and an interval that is honest under nominal conditions can silently under-cover once the true nuisance parameters drift from the training distribution.
The physics data derives from the FAIR Universe HiggsML Uncertainty Challenge. The task turns it into a stress test of uncertainty quantification: hidden pseudo-experiments mix a nominal regime with one whose systematic shifts fall outside the documented training configuration, and the two are indistinguishable per experiment by design.
Build a pipeline that estimates mu for each unlabelled pseudo-experiment and reports a calibrated central 68.27% confidence interval, packaged as a self-contained deliverable at /app/higgs_model/ (checkpoint, model.py, predict.py, run_summary.json).
python /app/higgs_model/predict.py --data-dir … --checkpoint … --output-path … and writes one JSONL row per experiment: {"experiment_id":…,"mu":…,"mu_lo":…,"mu_hi":…} with finite values satisfying mu_lo < mu <= mu_hi.Visible data staged read-only under /data: labeled training events (train/events.parquet with features, labels, weights, and detailed process labels), unlabelled validation experiments, calibration experiments with separate truth in calibration/labels.parquet, plus systematics.json and metadata.json describing the feature columns and documented nuisance model.
/app/higgs_model/ exercising the full contract.A root-only verifier runs the submitted model as the unprivileged agent user, without network access, on hidden pseudo-experiments spanning two regimes: known systematics and shifted systematics. Per-regime and pooled metrics are normalized between an event-blind baseline anchor and a reference-solution anchor, then combined as a weighted geometric mean (known 0.3, shifted 0.3, overall 0.4). The per-regime slices blend point RMSE on mu with the mean Winkler interval score; the pooled slice adds a challenge-style quantiles calibration score. The Winkler score punishes every missed interval by its distance, so covering the aggregate while sacrificing individual experiments cannot profit.
| Base image | python:3.11-slim-bookworm |
| Tools available | PyTorch, Python 3 |
| Compute | 8 CPUs · 32 GB RAM |
| Time limit | 20h |