ilkhamfy commited on
Commit
a8716a1
·
verified ·
1 Parent(s): fd69a65

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -10
README.md CHANGED
@@ -15,6 +15,8 @@ size_categories:
15
  - 100K<n<1M
16
  pretty_name: IRexp
17
  configs:
 
 
18
  - config_name: resolved
19
  data_files: data/irexp_resolved.jsonl.gz
20
  - config_name: train_no_bench
@@ -25,11 +27,15 @@ configs:
25
  data_files: data/pretrain_ir.jsonl.gz
26
  - config_name: all
27
  data_files: data/irexp.jsonl.gz
 
 
 
 
28
  ---
29
 
30
  # IRexp — experimental IR band lists from open-access literature
31
 
32
- **Paper:** [IRSpectra-Bench and IRexp: candidate recall, not verification, limits LLM elucidation from real experimental IR and NMR](https://github.com/IlkhamFY/spectro-agent) (manuscript in preparation, 2026)
33
 
34
  IRexp is the largest **openly redistributable** collection of **experimental infrared band lists** mined from open-access chemistry papers, often with co-reported ¹H/¹³C shift lists and resolved structures.
35
 
@@ -39,13 +45,17 @@ IRexp is the largest **openly redistributable** collection of **experimental inf
39
 
40
  | Split / file | Records | Description |
41
  |---|---:|---|
42
- | `irexp.jsonl.gz` | 121,233 | All IR band-list records |
43
- | `irexp_resolved.jsonl.gz` | 43,060 | Structure-linked (100%) |
 
 
 
 
44
  | … full IR + ¹H + ¹³C + structure | 33,201 | Multimodal quadruples |
45
  | `train_no_bench.jsonl.gz` | 42,808 | **Recommended for training** — `irexp_resolved` minus all IRSpectra-Bench InChIKey-14 |
46
  | `train_no_bench_nmr.jsonl.gz` | 32,949 | Same, requiring both ¹H and ¹³C |
47
 
48
- **Provenance:** 119,345 records from PMC Open-Access (CC-BY-4.0); 1,888 from Chemotion/RADAR4Chem (CC-BY-SA-4.0). Use `scripts/split_license_pools.py` to separate pools.
49
 
50
  **Companion benchmark:** [IRSpectra-Bench](https://github.com/IlkhamFY/spectro-agent/blob/main/docs/LEADERBOARD.md) — 194 blind elucidation problems built from IRexp; score submissions with `scripts/score_submission.py`.
51
 
@@ -54,9 +64,12 @@ IRexp is the largest **openly redistributable** collection of **experimental inf
54
  ```python
55
  from datasets import load_dataset
56
 
57
- # Structure-linked corpus (43,060 records)
58
  ds = load_dataset("ilkhamfy/IRexp", "resolved", split="train")
59
 
 
 
 
60
  row = ds[0]
61
  print(row["ir_bands_cm-1"][:5], row["smiles"][:40])
62
  ```
@@ -87,7 +100,11 @@ Each JSONL row:
87
  "h_nmr": "9.79 (s, 1H, NH-amide), ...",
88
  "c_nmr": "164.87, 161.57, ...",
89
  "ir_source": "experimental",
90
- "source_doi": "10.1038/..."
 
 
 
 
91
  }
92
  ```
93
 
@@ -118,11 +135,11 @@ python scripts/build_train_no_bench.py --require-nmr # 32,949 rows (H+C require
118
 
119
  ```bibtex
120
  @article{yabbarov2026irspectra,
121
- title = {IRSpectra-Bench and {IRexp}: candidate recall, not verification,
122
- limits {LLM} elucidation from real experimental {IR} and {NMR}},
123
  author = {Yabbarov, Ilkham and Sondhi, Rudra and Vargas-Hern{\'a}ndez, Rodrigo A.},
124
  year = {2026},
125
- note = {Manuscript in preparation}
126
  }
127
  ```
128
 
@@ -132,6 +149,6 @@ python scripts/build_train_no_bench.py --require-nmr # 32,949 rows (H+C require
132
  - **Code & benchmark:** https://github.com/IlkhamFY/spectro-agent
133
  - **Leaderboard:** https://github.com/IlkhamFY/spectro-agent/blob/main/docs/LEADERBOARD.md
134
  - **Zenodo:** DOI minted at publication
135
- - **Licence details:** `NOTICE` in this repository (and `data/NOTICE` in the GitHub mirror)
136
 
137
  When uploading to Hugging Face, this file is the repository `README.md`.
 
15
  - 100K<n<1M
16
  pretty_name: IRexp
17
  configs:
18
+ - config_name: commercial
19
+ data_files: data/irexp_commercial.jsonl.gz
20
  - config_name: resolved
21
  data_files: data/irexp_resolved.jsonl.gz
22
  - config_name: train_no_bench
 
27
  data_files: data/pretrain_ir.jsonl.gz
28
  - config_name: all
29
  data_files: data/irexp.jsonl.gz
30
+ - config_name: non_commercial
31
+ data_files: data/irexp_non_commercial.jsonl.gz
32
+ - config_name: sharealike
33
+ data_files: data/irexp_sharealike.jsonl.gz
34
  ---
35
 
36
  # IRexp — experimental IR band lists from open-access literature
37
 
38
+ **Paper:** [IRexp and IRSpectra-Bench: redistributable experimental IR band lists, a blind peak-list benchmark, and a recall-bound diagnosis of LLM elucidation](https://github.com/IlkhamFY/spectro-agent) (manuscript in preparation, 2026)
39
 
40
  IRexp is the largest **openly redistributable** collection of **experimental infrared band lists** mined from open-access chemistry papers, often with co-reported ¹H/¹³C shift lists and resolved structures.
41
 
 
45
 
46
  | Split / file | Records | Description |
47
  |---|---:|---|
48
+ | `irexp_commercial.jsonl.gz` | **87,617** | **Primary redistributable** — CC-BY + CC0 (`license_pool=commercial`) |
49
+ | `irexp.jsonl.gz` | 121,233 | Full corpus (multi-licence; every row stamped) |
50
+ | `irexp_non_commercial.jsonl.gz` | 20,938 | CC-BY-NC* held aside |
51
+ | `irexp_sharealike.jsonl.gz` | 1,897 | Chemotion CC-BY-SA-4.0 + rare PMC SA |
52
+ | `irexp_empty_unknown.jsonl.gz` | 10,781 | Empty/unknown — excluded from commercial Zenodo |
53
+ | `irexp_resolved.jsonl.gz` | 43,060 | Structure-linked (100%; multi-licence — filter by `license_pool`) |
54
  | … full IR + ¹H + ¹³C + structure | 33,201 | Multimodal quadruples |
55
  | `train_no_bench.jsonl.gz` | 42,808 | **Recommended for training** — `irexp_resolved` minus all IRSpectra-Bench InChIKey-14 |
56
  | `train_no_bench_nmr.jsonl.gz` | 32,949 | Same, requiring both ¹H and ¹³C |
57
 
58
+ **Provenance & licensing:** 119,345 PMC-sourced + 1,888 Chemotion/RADAR4Chem. Per-article Europe PMC join stamps `license` / `license_pool` on every row (`scripts/join_pmc_licences.py`). **Commercial training / Zenodo primary = `commercial` config (87,617).** Do not treat the full `all` split as uniformly CC-BY. See `NOTICE` and `LICENCE_REMEDIATION.md`.
59
 
60
  **Companion benchmark:** [IRSpectra-Bench](https://github.com/IlkhamFY/spectro-agent/blob/main/docs/LEADERBOARD.md) — 194 blind elucidation problems built from IRexp; score submissions with `scripts/score_submission.py`.
61
 
 
64
  ```python
65
  from datasets import load_dataset
66
 
67
+ # Structure-linked corpus (43,060 records; filter license_pool for commercial use)
68
  ds = load_dataset("ilkhamfy/IRexp", "resolved", split="train")
69
 
70
+ # Preferred redistributable commercial pool
71
+ comm = load_dataset("ilkhamfy/IRexp", "commercial", split="train")
72
+
73
  row = ds[0]
74
  print(row["ir_bands_cm-1"][:5], row["smiles"][:40])
75
  ```
 
100
  "h_nmr": "9.79 (s, 1H, NH-amide), ...",
101
  "c_nmr": "164.87, 161.57, ...",
102
  "ir_source": "experimental",
103
+ "source_doi": "PMC:13234927",
104
+ "pmcid": "PMC13234927",
105
+ "license": "CC-BY",
106
+ "license_pool": "commercial",
107
+ "license_source": "europepmc"
108
  }
109
  ```
110
 
 
135
 
136
  ```bibtex
137
  @article{yabbarov2026irspectra,
138
+ title = {{IRexp} and {IRSpectra-Bench}: redistributable experimental {IR} band lists,
139
+ a blind peak-list benchmark, and a recall-bound diagnosis of {LLM} elucidation},
140
  author = {Yabbarov, Ilkham and Sondhi, Rudra and Vargas-Hern{\'a}ndez, Rodrigo A.},
141
  year = {2026},
142
+ note = {Manuscript in preparation; target J. Chem. Inf. Model.}
143
  }
144
  ```
145
 
 
149
  - **Code & benchmark:** https://github.com/IlkhamFY/spectro-agent
150
  - **Leaderboard:** https://github.com/IlkhamFY/spectro-agent/blob/main/docs/LEADERBOARD.md
151
  - **Zenodo:** DOI minted at publication
152
+ - **Licence details:** `NOTICE` / `LICENCE_REMEDIATION.md` in this repository (and `data/NOTICE`, `docs/scientific_data/LICENCE_REMEDIATION.md` in the GitHub mirror)
153
 
154
  When uploading to Hugging Face, this file is the repository `README.md`.