Datasets:
File size: 2,143 Bytes
755c98a 59ea748 6a7f564 755c98a 53727e7 755c98a 59ea748 755c98a | 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 | ---
annotations_creators:
- machine-generated
language:
- en
license:
- other
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
task_categories:
- image-to-text
- visual-question-answering
task_ids:
- visual-question-answering
---
# RobustRDP-ProcessedValData
Processed validation/evaluation data for the paper: *RobustRDP: Advancing Reaction Diagram Parsing via Synthetic-to-Real Data Scaling and Robustness-Oriented Training*.
## Dataset Structure
```
RobustRDP_test/
├── dev_downsampled_rxn.json # Validation entries
└── images_eval_resized.zip # Zipped evaluation images (500 images)
RxnScribe_test/
├── dev_downsampled_rxn.json # Validation entries
└── images_eval_resized.zip # Zipped evaluation images (1,379 images)
```
## Data Details
| Split | Entries | Images | Description |
|-------|---------|--------|-------------|
| **RobustRDP_test** | 500 | 500 | RobustRDP evaluation set covering multiple reaction diagram parsing variants |
| **RxnScribe_test** | 138 | 1,379 | RxnScribe evaluation set for reaction diagram parsing benchmark |
## Data Format
Each entry follows the conversational format:
```json
{
"messages": [
{"content": "<image>\n...", "role": "user"},
{"content": "<rxn><rct>...<mol><cnd>...<txt><prd>...<mol>", "role": "assistant"}
],
"images": ["path/to/image.png"]
}
```
Annotations use special tokens:
- `<rxn>`: Start of a reaction
- `<rct>`: Reactants section
- `<cnd>`: Conditions section
- `<prd>`: Products section
- `<mol>`: Molecule entity
- `<txt>`: Text entity
## Data Generation
Evaluation data built from [RxnLabelData](https://huggingface.co/datasets/Jingcz/RxnLabelData), downsampled and processed for model evaluation on reaction diagram parsing tasks.
## Related Resources
- **Model**: [RobustRDP](https://huggingface.co/Jingcz/RobustRDP)
- **Raw Data**: [RobustRDP-RawValData](https://huggingface.co/datasets/Jingcz/RobustRDP-RawValData)
- **Code**: [RobustRDP GitHub](https://github.com/jaydetang/RobustRDP)
- **Annotation Platform**: [RxnLabel](https://github.com/jaydetang/RxnLabel)
|