Add dataset card with citations and ORDerly descriptions
Browse files
README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
license: cc-by-4.0
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-generation
|
| 6 |
+
- feature-extraction
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
tags:
|
| 10 |
+
- chemistry
|
| 11 |
+
- chemoinformatics
|
| 12 |
+
- reaction-prediction
|
| 13 |
+
- RAG
|
| 14 |
+
pretty_name: ORDerly Styrene Mizoroki-Heck RAG Dataset
|
| 15 |
+
size_categories:
|
| 16 |
+
- 10K<n<100K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# ORDerly: Styrene Mizoroki-Heck RAG-Ready Dataset
|
| 20 |
+
|
| 21 |
+
This repository contains chemical reaction data formatted for **Retrieval-Augmented Generation (RAG)** systems.
|
| 22 |
+
The data is a processed version of the **ORDerly** benchmark, specifically focusing on reaction conditions and forward/retro prediction tasks.
|
| 23 |
+
|
| 24 |
+
## Dataset Structure
|
| 25 |
+
The data is split into 10,000-row Parquet chunks to prevent Out-of-Memory (OOM) errors during ingestion into vector databases.
|
| 26 |
+
It includes:
|
| 27 |
+
- **orderly_condition**: Solvents and agents given reactants and products.
|
| 28 |
+
- **orderly_forward**: Product prediction given reactants and agents.
|
| 29 |
+
- **orderly_retro**: Retrosynthesis planning.
|
| 30 |
+
|
| 31 |
+
## How to Use
|
| 32 |
+
```python
|
| 33 |
+
from datasets import load_dataset
|
| 34 |
+
dataset = load_dataset("Azzindani/Open_Reaction_Data", streaming=True)
|
| 35 |
+
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Citations and Data Source
|
| 39 |
+
|
| 40 |
+
This dataset is based on the **ORDerly** framework. If you use this data, please cite the original authors:
|
| 41 |
+
|
| 42 |
+
**Paper:**
|
| 43 |
+
|
| 44 |
+
> Wigh, D. S., et al. (2024). ORDerly: Data Sets and Benchmarks for Chemical Reaction Data. *Journal of Chemical Information and Modeling*. [https://doi.org/10.1021/acs.jcim.4c00292](https://pubs.acs.org/doi/10.1021/acs.jcim.4c00292)
|
| 45 |
+
|
| 46 |
+
**Original Dataset:**
|
| 47 |
+
|
| 48 |
+
> Wigh, D. S., et al. (2023). ORDerly chemical reactions condition benchmarks. *Figshare*. [https://doi.org/10.6084/m9.figshare.23298467.v4](https://figshare.com/articles/dataset/ORDerly_chemical_reactions_condition_benchmarks/23298467/4)
|
| 49 |
+
|
| 50 |
+
## License
|
| 51 |
+
|
| 52 |
+
Licensed under **CC BY 4.0**.
|