Dariusfar commited on
Commit
74c2813
·
verified ·
1 Parent(s): 15f1951

update dataset card

Browse files
Files changed (1) hide show
  1. README.md +1 -33
README.md CHANGED
@@ -95,31 +95,8 @@ This HuggingFace dataset hosts the **task corpus only** — the agent-facing ins
95
 
96
  The reference yields used by the scorer are deliberately not published here to preserve the benchmark's blind-test property.
97
 
98
- ## Quick start
99
 
100
- ```python
101
- from datasets import load_dataset
102
-
103
- ds = load_dataset("Dariusfar/ColliderBench", split="train")
104
- print(ds) # 10 sim tasks
105
- print(ds[0]["task_id"], ds[0]["paper_id"])
106
- print(ds[0]["task_md"][:400]) # what the agent gets shown
107
- print(ds[0]["template_yaml"][:400]) # the null-filled template
108
- print(ds[0]["paper_pdf"][:8]) # PDF magic bytes (b'%PDF-1.5')
109
- ```
110
-
111
- To actually run an agent against a task and score its submission, install the harness from the GitHub repo:
112
-
113
- ```bash
114
- git clone https://github.com/dfaroughy/Collider-Bench.git
115
- cd Collider-Bench
116
- pip install -e ".[dev]"
117
- podman pull ghcr.io/dfaroughy/lhc-bench:latest # MadGraph + Pythia + Delphes + ROOT image
118
- export ANTHROPIC_API_KEY=... # or OPENAI_API_KEY / GEMINI_API_KEY / DEEPSEEK_API_KEY
119
- scripts/run-agent --config configs/anthropics/claude_sonnet.yaml --task sus-16-046_sim-T5Wg
120
- ```
121
-
122
- ## Schema (one row per task)
123
 
124
  | Field | Type | Description |
125
  |---|---|---|
@@ -159,15 +136,6 @@ scripts/run-agent --config configs/anthropics/claude_sonnet.yaml --task sus-16-0
159
  | `sus-16-051_sim-T2bW_SRG` | single lepton | `T2bW` | $E_T^{\rm miss}$ | CMS-SUS-16-051 |
160
  | `sus-16-051_sim-T2tt_comp` | single lepton | `T2tt`, compressed | $E_T^{\rm miss}$ | CMS-SUS-16-051 |
161
 
162
- ## Scoring
163
-
164
- Each `sim` task asks the agent to reproduce the published per-bin yield distribution. The primary metric used by the scorer is the relative L² distance
165
-
166
- $$d(\hat y, y^\star) = \sqrt{\sum_k (\hat y_k - y_k^\star)^2 \big/ \sum_k (y_k^\star)^2}$$
167
-
168
- between the agent's bin yields $\hat y$ and the published reference $y^\star$.
169
-
170
- Scoring is offline and deterministic — it does **not** require an LLM. See [`ColliderBench/Evals/`](https://github.com/dfaroughy/Collider-Bench/tree/main/ColliderBench/Evals) in the harness repo.
171
 
172
  ## Citation
173
 
 
95
 
96
  The reference yields used by the scorer are deliberately not published here to preserve the benchmark's blind-test property.
97
 
 
98
 
99
+ ## Task schema
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
 
101
  | Field | Type | Description |
102
  |---|---|---|
 
136
  | `sus-16-051_sim-T2bW_SRG` | single lepton | `T2bW` | $E_T^{\rm miss}$ | CMS-SUS-16-051 |
137
  | `sus-16-051_sim-T2tt_comp` | single lepton | `T2tt`, compressed | $E_T^{\rm miss}$ | CMS-SUS-16-051 |
138
 
 
 
 
 
 
 
 
 
 
139
 
140
  ## Citation
141