File size: 6,392 Bytes
b4906e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7acd935
a8716a1
 
7acd935
 
 
 
 
 
 
 
 
 
a8716a1
 
 
 
b4906e9
 
 
 
a8716a1
b4906e9
 
 
 
 
 
 
 
 
b7954ea
a8716a1
b7954ea
a8716a1
b7954ea
a8716a1
b4906e9
 
 
 
b7954ea
b4906e9
 
 
 
 
 
 
 
a8716a1
9b05c0f
b4906e9
a8716a1
 
 
b4906e9
 
 
 
9b05c0f
b4906e9
 
9b05c0f
b4906e9
 
9b05c0f
b4906e9
 
9b05c0f
b4906e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8716a1
 
 
 
 
b4906e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8716a1
 
b4906e9
 
a8716a1
b4906e9
 
 
 
 
 
 
 
 
a8716a1
b4906e9
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
---
language:
  - en
license:
  - cc-by-4.0
  - cc-by-sa-4.0
tags:
  - chemistry
  - spectroscopy
  - infrared
  - nmr
  - structure-elucidation
  - cheminformatics
size_categories:
  - 100K<n<1M
pretty_name: IRexp
configs:
  - config_name: commercial
    data_files: data/irexp_commercial.jsonl.gz
  - config_name: resolved
    data_files: data/irexp_resolved.jsonl.gz
  - config_name: train_no_bench
    data_files: data/train_no_bench.jsonl.gz
  - config_name: train_no_bench_nmr
    data_files: data/train_no_bench_nmr.jsonl.gz
  - config_name: pretrain_ir
    data_files: data/pretrain_ir.jsonl.gz
  - config_name: all
    data_files: data/irexp.jsonl.gz
  - config_name: non_commercial
    data_files: data/irexp_non_commercial.jsonl.gz
  - config_name: sharealike
    data_files: data/irexp_sharealike.jsonl.gz
---

# IRexp — experimental IR band lists from open-access literature

**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)

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.

> **Important:** IRexp contains **band lists** (peak positions in cm⁻¹), not digitised absorbance traces. This is the form reported in publication text — the regime IRSpectra-Bench evaluates — and is not directly comparable to SDBS or NIST full spectra.

## Dataset summary

| Split / file | Records | Description |
|---|---:|---|
| `irexp_commercial.jsonl.gz` | **88,545** | **Primary redistributable** — CC-BY + CC0 (`license_pool=commercial`) |
| `irexp.jsonl.gz` | 121,233 | Full corpus (multi-licence; every row stamped) |
| `irexp_non_commercial.jsonl.gz` | 21,823 | CC-BY-NC* held aside |
| `irexp_sharealike.jsonl.gz` | 1,897 | Chemotion CC-BY-SA-4.0 + rare PMC SA |
| `irexp_empty_unknown.jsonl.gz` | 8,963 | Empty/unknown — excluded from commercial Zenodo |
| `irexp_resolved.jsonl.gz` | 43,060 | Structure-linked (100%; multi-licence — filter by `license_pool`) |
| … full IR + ¹H + ¹³C + structure | 33,201 | Multimodal quadruples |
| `train_no_bench.jsonl.gz` | 42,808 | **Recommended for training**`irexp_resolved` minus all IRSpectra-Bench InChIKey-14 |
| `train_no_bench_nmr.jsonl.gz` | 32,949 | Same, requiring both ¹H and ¹³C |

**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 (88,545).** Do not treat the full `all` split as uniformly CC-BY. See `NOTICE` and `LICENCE_REMEDIATION.md`.

**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`.

## Load in three lines

```python
from datasets import load_dataset

# Structure-linked corpus (43,060 records; filter license_pool for commercial use)
ds = load_dataset("ilkhamfy/IRexp", "resolved", split="train")

# Preferred redistributable commercial pool
comm = load_dataset("ilkhamfy/IRexp", "commercial", split="train")

row = ds[0]
print(row["ir_bands_cm-1"][:5], row["smiles"][:40])
```

For **fine-tuning without benchmark leakage**, use the `train_no_bench` config:

```python
ds = load_dataset("ilkhamfy/IRexp", "train_no_bench", split="train")
```

Or load a file path directly:

```python
ds = load_dataset("ilkhamfy/IRexp", data_files="data/train_no_bench.jsonl.gz", split="train")
```

## Record schema

Each JSONL row:

```json
{
  "id": "AJCQUIFRMABSOZ-UHFFFAOYSA-N",
  "inchikey": "AJCQUIFRMABSOZ-UHFFFAOYSA-N",
  "smiles": "Cc1ccccc1NC(=O)Cn1cc...",
  "selfies": "[C][C][=C]...",
  "ir_bands_cm-1": [3318.0, 3146.0, 1704.0],
  "h_nmr": "9.79 (s, 1H, NH-amide), ...",
  "c_nmr": "164.87, 161.57, ...",
  "ir_source": "experimental",
  "source_doi": "PMC:13234927",
  "pmcid": "PMC13234927",
  "license": "CC-BY",
  "license_pool": "commercial",
  "license_source": "europepmc"
}
```

## Training vs benchmarking

| Use case | File | Benchmark overlap |
|---|---|---|
| Pretrain IR encoder | `pretrain_ir.jsonl.gz` or all `ir_bands_cm-1` | N/A (mostly unlabeled) |
| Supervised IR→structure | `train_no_bench.jsonl.gz` | **None** (248 IK-14 held out) |
| Evaluate elucidation | [IRSpectra-Bench](https://github.com/IlkhamFY/spectro-agent/blob/main/docs/LEADERBOARD.md) | — |
| ⚠️ Legacy split | `irexp_release/train.jsonl.gz` | **117/200 IK-14 overlap** — do not use for benchmark evaluation |

Rebuild the held-out training pool:

```bash
python scripts/build_train_no_bench.py              # 42,808 rows
python scripts/build_train_no_bench.py --require-nmr  # 32,949 rows (H+C required)
```

## Limitations (read before citing)

- **Band lists, not spectra** — median 9 bands (PMC) vs 39 (Chemotion peak-picked).
- **Literature-transcribed** — heterogeneous labs/instruments; not raw `.jdx` files.
- **Structure resolution 35%** of all records; use `irexp_resolved` for supervised tasks.
- **Extraction recall** of IR strings per paper not yet human-audited (transcription fidelity audited: 560/560 bands on n=60).

## Citation

```bibtex
@article{yabbarov2026irspectra,
  title   = {{IRexp} and {IRSpectra-Bench}: redistributable experimental {IR} band lists,
             a blind peak-list benchmark, and a recall-bound diagnosis of {LLM} elucidation},
  author  = {Yabbarov, Ilkham and Sondhi, Rudra and Vargas-Hern{\'a}ndez, Rodrigo A.},
  year    = {2026},
  note    = {Manuscript in preparation; target J. Chem. Inf. Model.}
}
```

## Links

- **Dataset (Hugging Face):** https://huggingface.co/datasets/ilkhamfy/IRexp
- **Code & benchmark:** https://github.com/IlkhamFY/spectro-agent
- **Leaderboard:** https://github.com/IlkhamFY/spectro-agent/blob/main/docs/LEADERBOARD.md
- **Zenodo:** DOI minted at publication
- **Licence details:** `NOTICE` / `LICENCE_REMEDIATION.md` in this repository (and `data/NOTICE`, `docs/scientific_data/LICENCE_REMEDIATION.md` in the GitHub mirror)

When uploading to Hugging Face, this file is the repository `README.md`.