ilkhamfy commited on
Commit
694545c
·
verified ·
1 Parent(s): e1efd2f

Add LEADERBOARD.md

Browse files
Files changed (1) hide show
  1. LEADERBOARD.md +133 -0
LEADERBOARD.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # IRSpectra-Bench leaderboard
2
+
3
+ Blind structure elucidation from **molecular formula + IR + ¹H + ¹³C** peak lists exactly as reported in open-access papers. Constitution scoring uses RDKit InChIKey connectivity (first 14 characters) unless noted.
4
+
5
+ **Paper:** [IRSpectra-Bench and IRexp](https://github.com/IlkhamFY/spectro-agent) — *Digital Discovery*, 2026.
6
+
7
+ ---
8
+
9
+ ## Main benchmark (n = 194)
10
+
11
+ | Rank | Model / method | Top-1 ↑ | Recall (top-3) ↑ | Gen. recall | Verif. prec. \| recall | Notes |
12
+ |---:|---|--:|--:|--:|--:|---|
13
+ | 1 | Claude Fable 5 | **46%** | 54% | — | — | 24-compound subset only |
14
+ | 2 | Claude Opus + generate-wide + forward-verify | **30%** | — | 42% | 72% | 60-compound arm |
15
+ | 3 | Claude Opus + forward-verify | 30% | 33.5% | 34% | **89%** | Full benchmark (headline) |
16
+ | 4 | Claude Opus (solver self-rank) | 28.4% | 33.5% | 34% | 85% | Full benchmark |
17
+ | 5 | Grok 4.6 | — | — | 53% | 62% | 60-compound arm |
18
+ | 6 | Gemini 3.7 Flash | — | — | 50% | 73% | 60-compound arm |
19
+ | 7 | GPT-5.6 Sol | — | — | 42% | 68% | 60-compound arm |
20
+ | 8 | Claude Sonnet | 21% | 25% | — | — | 24-compound subset |
21
+ | 9 | Claude Haiku | 0% | 4% | — | — | 24-compound subset |
22
+
23
+ Bootstrap 95% CIs for the headline row: top-1 **28.4% [22–35]**, recall **33.5% [27–40]**. Corpus-reweighted top-1 (17.5% simple / 82.5% complex): **15.2% [11–20]**.
24
+
25
+ **Key finding:** verification precision exceeds generation recall for every vendor tested — the binding constraint is *candidate proposal*, not spectral ranking.
26
+
27
+ ### By difficulty (Claude Opus, n = 194)
28
+
29
+ | Stratum | n | Top-1 | Recall |
30
+ |---|---:|--:|--:|
31
+ | All | 194 | 28.4% | 33.5% |
32
+ | Simple | 98 | 48.0% | 54.1% |
33
+ | Complex | 96 | 8.3% | 12.5% |
34
+
35
+ ---
36
+
37
+ ## Evaluate your model
38
+
39
+ ### 1. Download the benchmark (questions only — no answers in the solver prompt)
40
+
41
+ ```bash
42
+ git clone https://github.com/IlkhamFY/spectro-agent.git
43
+ cd spectro-agent
44
+ pip install -r requirements.txt
45
+ ```
46
+
47
+ Questions (blind inputs):
48
+
49
+ - `data/benchmark_main/questions2.jsonl` (140; use `clean_qids.json` for validated subset)
50
+ - `data/benchmark_v3/questions2.jsonl` (40)
51
+ - `data/benchmark_v2_ctrl/questions2.jsonl` (20)
52
+
53
+ Each row: `qid`, `formula`, `ir_bands_cm-1`, `h_nmr`, `c_nmr`. **No structure hints.**
54
+
55
+ ### 2. Run your elucidator
56
+
57
+ Return up to **three ranked SMILES** per `qid`. Protocol:
58
+
59
+ - Inputs: formula + IR + ¹H + ¹³C only (as printed in the source paper).
60
+ - No web search, no structure hints, no answer-key access.
61
+ - Document model version, prompt, and tool access in your submission.
62
+
63
+ ### 3. Score locally
64
+
65
+ Write predictions as JSONL:
66
+
67
+ ```json
68
+ {"qid": "R01", "candidates": ["SMILES_rank1", "SMILES_rank2", "SMILES_rank3"]}
69
+ ```
70
+
71
+ ```bash
72
+ python scripts/score_submission.py --predictions my_run.jsonl --name "YourModel-1.0"
73
+ # optional strict stereochemistry scoring:
74
+ python scripts/score_submission.py --predictions my_run.jsonl --stereo
75
+ ```
76
+
77
+ Reproduce the official headline numbers:
78
+
79
+ ```bash
80
+ python scripts/score_main.py
81
+ python scripts/forward_verify_all.py
82
+ ```
83
+
84
+ ### 4. Submit to the leaderboard
85
+
86
+ Open a GitHub issue or PR on [IlkhamFY/spectro-agent](https://github.com/IlkhamFY/spectro-agent) with:
87
+
88
+ 1. `--name` label for the table
89
+ 2. `score_submission.py` output (copy-paste)
90
+ 3. Predictions file (`my_run.jsonl`) or link to reproducible run
91
+ 4. Model ID, date, and brief protocol note (tools, candidate budget, reasoning tier)
92
+ 5. Confirmation: blind protocol, no answer-key access
93
+
94
+ We will verify scoring with `scripts/score_submission.py` before adding a row.
95
+
96
+ ---
97
+
98
+ ## Subsets & extensions
99
+
100
+ | Benchmark | n | Purpose |
101
+ |---|---:|---|
102
+ | **IRSpectra-Bench** (main + v3 + v2_ctrl) | 194 | Headline leaderboard |
103
+ | IRSpectra-Bench (main clean only) | 134 | Spectrally validated main round |
104
+ | IRSpectra-Bench-Electrolyte | 46 | Battery-electrolyte functional classes |
105
+ | Cross-vendor arm | 60 | Same compounds, multiple vendors (`docs/CROSS_VENDOR.md`) |
106
+ | Model comparison subset | 24 | Claude Haiku → Fable ladder |
107
+
108
+ ---
109
+
110
+ ## Related resources
111
+
112
+ - **IRexp dataset (training):** https://huggingface.co/datasets/ilkhamfy/IRexp — use `data/train_no_bench.jsonl.gz` to avoid benchmark leakage (`data/irexp_release/README_HF.md`)
113
+ - **Cross-vendor protocol:** `docs/CROSS_VENDOR.md`
114
+ - **Forward-verification:** `docs/FORWARD_VERIFY.md`
115
+ - **Full reproduction:** `README.md` in repository root
116
+
117
+ ---
118
+
119
+ ## Citation
120
+
121
+ If you use IRSpectra-Bench or report numbers on it, please cite:
122
+
123
+ ```bibtex
124
+ @article{yabbarov2026irspectra,
125
+ title = {IRSpectra-Bench and {IRexp}: candidate recall, not verification,
126
+ limits {LLM} elucidation from real experimental {IR} and {NMR}},
127
+ author = {Yabbarov, Ilkham and Sondhi, Rudra and Vargas-Hern{\'a}ndez, Rodrigo A.},
128
+ journal = {Digital Discovery},
129
+ year = {2026}
130
+ }
131
+ ```
132
+
133
+ *Last updated: 2026-08-24 (paper baseline rows). External submissions listed after verification.*