lukaskim commited on
Commit
b5248e1
·
verified ·
1 Parent(s): 6c385ed

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +97 -33
README.md CHANGED
@@ -1,40 +1,104 @@
1
  ---
2
- dataset_info:
3
- - config_name: its
4
- features:
5
- - name: original_rsmi
6
- dtype: large_string
7
- - name: mapped_rxn
8
- dtype: large_string
9
- - name: its_graphies
10
- dtype: large_string
11
- splits:
12
- - name: train
13
- num_bytes: 1390083424
14
- num_examples: 1405109
15
- download_size: 461660060
16
- dataset_size: 1390083424
17
- - config_name: rxnmapper
18
- features:
19
- - name: reaction
20
- dtype: large_string
21
- - name: mapped_reaction
22
- dtype: large_string
23
- - name: confidence
24
- dtype: float64
25
- splits:
26
- - name: train
27
- num_bytes: 838693711
28
- num_examples: 1446478
29
- download_size: 244953539
30
- dataset_size: 838693711
31
  configs:
32
- - config_name: its
33
  data_files:
34
  - split: train
35
- path: its/train-*
36
- - config_name: rxnmapper
37
  data_files:
38
  - split: train
39
- path: rxnmapper/train-*
40
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - other
5
+ language:
6
+ - en
7
+ tags:
8
+ - chemistry
9
+ - reactions
10
+ - smiles
11
+ - atom-mapping
12
+ - graphies
13
+ - reaction smiles
14
+ - rxnmapper
15
+ - ITS
16
+ pretty_name: MappedCRD
17
+ size_categories:
18
+ - 1M<n<10M
 
 
 
 
 
 
 
 
 
 
 
 
19
  configs:
20
+ - config_name: rxnmapper
21
  data_files:
22
  - split: train
23
+ path: rxnmapper/data-*.arrow
24
+ - config_name: its
25
  data_files:
26
  - split: train
27
+ path: its/data-*.arrow
28
  ---
29
+
30
+ # MappedCRD — Mapped Chemical Reactions Database
31
+
32
+ This dataset is a processed version of the [Chemical Reactions Database (CRD)](https://kmt.vander-lingen.nl/) ([Zenodo](https://doi.org/10.5281/zenodo.18109268)), providing atom-mapped reaction SMILES and imaginary transition state (ITS) graph encodings for large-scale cheminformatics and machine-learning use.
33
+
34
+ ## Dataset Description
35
+
36
+ The CRD is a curated collection of chemical reactions. This dataset distributes two subsets derived from it:
37
+
38
+ | Subset | Examples | Description |
39
+ |--------|----------|-------------|
40
+ | `rxnmapper` | 1,446,478 | Full reaction SMILES mapped with [RXNMapper](https://github.com/rxn4chemistry/rxnmapper) |
41
+ | `its` | 1,405,109 | Reactions encoded as imaginary transition state (ITS) graphs using [graphies](https://github.com/lukasmki/graphies) and [SynKit](https://github.com/TieuLongPhan/SynKit) |
42
+
43
+ ## Subsets
44
+
45
+ ### `rxnmapper`
46
+
47
+ Atom-mapped reactions produced by RXNMapper. Each row contains:
48
+
49
+ | Column | Type | Description |
50
+ |--------|------|-------------|
51
+ | `reaction` | string | Original reaction SMILES (unmapped) |
52
+ | `mapped_reaction` | string | Atom-mapped reaction SMILES |
53
+ | `confidence` | float64 | RXNMapper confidence score (0–1) |
54
+
55
+ ### `its`
56
+
57
+ Reactions that were successfully processed into ITS graphs and encoded with graphies. Each row contains:
58
+
59
+ | Column | Type | Description |
60
+ |--------|------|-------------|
61
+ | `original_rsmi` | string | Original reaction SMILES |
62
+ | `mapped_rxn` | string | Atom-mapped reaction SMILES |
63
+ | `its_graphies` | string | graphies-encoded ITS graph string |
64
+
65
+ The ITS (imaginary transition state) representation encodes both reactant and product bond changes in a single molecular graph, enabling direct graph-based learning on reaction data.
66
+
67
+ ## Usage
68
+
69
+ ```python
70
+ from datasets import load_dataset
71
+
72
+ # Atom-mapped reactions
73
+ ds_mapped = load_dataset("lukasmki/MappedCRD", name="rxnmapper", split="train")
74
+
75
+ # ITS graph encodings
76
+ ds_its = load_dataset("lukasmki/MappedCRD", name="its", split="train")
77
+ ```
78
+
79
+ ## Source Data
80
+
81
+ - CRD source: https://kmt.vander-lingen.nl/
82
+ - CRD Zenodo archive: https://doi.org/10.5281/zenodo.18109268
83
+
84
+ ## Tools
85
+
86
+ - Atom mapping: [RXNMapper](https://github.com/rxn4chemistry/rxnmapper)
87
+ - ITS encoding: [graphies](https://github.com/lukasmki/graphies) and [SynKit](https://github.com/TieuLongPhan/SynKit)
88
+
89
+ ## Citation
90
+
91
+ If you use this dataset, please cite the original CRD:
92
+
93
+ ```
94
+ @misc{crd,
95
+ doi = {10.5281/ZENODO.18109268},
96
+ url = {https://zenodo.org/doi/10.5281/zenodo.18109268},
97
+ author = {van der Lingen, Rik},
98
+ language = {en},
99
+ title = {Organic reaction SMILES 1.44M dataset},
100
+ publisher = {Zenodo},
101
+ year = {2025},
102
+ copyright = {Creative Commons Attribution 4.0 International}
103
+ }
104
+ ```