Dariusfar commited on
Commit
617a2c3
·
verified ·
1 Parent(s): 00dc0b2

update dataset card

Browse files
Files changed (1) hide show
  1. README.md +7 -10
README.md CHANGED
@@ -24,8 +24,6 @@ dataset_info:
24
  dtype: string
25
  - name: paper_id
26
  dtype: string
27
- - name: initial_prompt
28
- dtype: string
29
  - name: analysis_target
30
  dtype: string
31
  - name: signal_model
@@ -38,15 +36,15 @@ dataset_info:
38
  dtype: string
39
  - name: score_mode
40
  dtype: string
41
- - name: tolerance
42
- dtype: float64
43
  - name: walltime
44
  dtype: string
45
  - name: difficulty
46
  dtype: string
47
  - name: tags
48
  list: string
49
- - name: instructions_md
 
 
50
  dtype: string
51
  - name: task_toml
52
  dtype: string
@@ -105,7 +103,7 @@ from datasets import load_dataset
105
  ds = load_dataset("Dariusfar/ColliderBench", split="train")
106
  print(ds) # 10 sim tasks
107
  print(ds[0]["task_id"], ds[0]["paper_id"])
108
- print(ds[0]["instructions_md"][:400]) # what the agent gets shown
109
  print(ds[0]["template_yaml"][:400]) # the null-filled template
110
  print(ds[0]["paper_pdf"][:8]) # PDF magic bytes (b'%PDF-1.5')
111
  ```
@@ -127,19 +125,18 @@ scripts/run-agent --config configs/anthropics/claude_sonnet.yaml --task sus-16-0
127
  |---|---|---|
128
  | `task_id` | string | Canonical task identifier, e.g. `sus-16-046_sim-T5Wg` |
129
  | `paper_id` | string | CMS analysis identifier, e.g. `CMS-SUS-16-046` |
130
- | `initial_prompt` | string | The system prompt the reference `simple` agent receives (from `agents/simple/run.py:build_prompt`); use as a starting point or replace with your own |
131
  | `analysis_target` | string | Final state under study (`photons`, `single lepton`, `leptons + jets`) |
132
  | `signal_model` | string | SUSY simplified-model name + slice (`T5Wg, high-H_T`, `T2tt, compressed`, …) |
133
  | `observable` | string | Observable key as used by the scorer (`STgamma`, `MET`, …) |
134
  | `observable_pretty` | string | LaTeX-style label (`S_T^gamma`, `E_T^miss`, `p_T^miss`) |
135
  | `plot_units` | string | y-axis units of the histogram (`Events/bin`, `Events/GeV`) |
136
  | `score_mode` | string | Scoring mode used by the harness (`shape_norm` for sim tasks) |
137
- | `tolerance` | float64 | Per-bin tolerance band used in shape-pass-rate diagnostics |
138
  | `walltime` | string | Harness walltime budget (e.g. `2h30m`) |
139
  | `difficulty` | string | `easy` / `medium` / `hard` rough difficulty tag |
140
  | `tags` | seq<string> | Free-form metadata tags |
141
- | `instructions_md` | string | The full `TASK.md` text the agent's primary instructions |
142
- | `task_toml` | string | Verbatim `task.toml` content (paper id, observable, walltime, tolerance, …) |
 
143
  | `template_yaml` | string | Null-filled HEPData-style YAML the agent fills with predicted bin values |
144
  | `n_bins` | int64 | Total bin count across all dependent variables in the template |
145
  | `paper_pdf` | binary | Bytes of the CMS analysis paper (publicly available on CDS/Inspire-HEP) |
 
24
  dtype: string
25
  - name: paper_id
26
  dtype: string
 
 
27
  - name: analysis_target
28
  dtype: string
29
  - name: signal_model
 
36
  dtype: string
37
  - name: score_mode
38
  dtype: string
 
 
39
  - name: walltime
40
  dtype: string
41
  - name: difficulty
42
  dtype: string
43
  - name: tags
44
  list: string
45
+ - name: initial_prompt
46
+ dtype: string
47
+ - name: task_md
48
  dtype: string
49
  - name: task_toml
50
  dtype: string
 
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
  ```
 
125
  |---|---|---|
126
  | `task_id` | string | Canonical task identifier, e.g. `sus-16-046_sim-T5Wg` |
127
  | `paper_id` | string | CMS analysis identifier, e.g. `CMS-SUS-16-046` |
 
128
  | `analysis_target` | string | Final state under study (`photons`, `single lepton`, `leptons + jets`) |
129
  | `signal_model` | string | SUSY simplified-model name + slice (`T5Wg, high-H_T`, `T2tt, compressed`, …) |
130
  | `observable` | string | Observable key as used by the scorer (`STgamma`, `MET`, …) |
131
  | `observable_pretty` | string | LaTeX-style label (`S_T^gamma`, `E_T^miss`, `p_T^miss`) |
132
  | `plot_units` | string | y-axis units of the histogram (`Events/bin`, `Events/GeV`) |
133
  | `score_mode` | string | Scoring mode used by the harness (`shape_norm` for sim tasks) |
 
134
  | `walltime` | string | Harness walltime budget (e.g. `2h30m`) |
135
  | `difficulty` | string | `easy` / `medium` / `hard` rough difficulty tag |
136
  | `tags` | seq<string> | Free-form metadata tags |
137
+ | `initial_prompt` | string | The system prompt the reference `simple` agent receives (from `agents/simple/run.py:build_prompt`); use as a starting point or replace with your own |
138
+ | `task_md` | string | The full `TASK.md` text the agent's primary instructions |
139
+ | `task_toml` | string | Verbatim `task.toml` content (paper id, observable, walltime, …) |
140
  | `template_yaml` | string | Null-filled HEPData-style YAML the agent fills with predicted bin values |
141
  | `n_bins` | int64 | Total bin count across all dependent variables in the template |
142
  | `paper_pdf` | binary | Bytes of the CMS analysis paper (publicly available on CDS/Inspire-HEP) |