Datasets:
Add dataset card and paper/code links
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-text-to-text
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# SupraBench: A Benchmark for Supramolecular Chemistry
|
| 8 |
+
|
| 9 |
+
**SupraBench** is the first benchmark for evaluating large language models on **supramolecular host–guest chemistry** reasoning. It comprises four fundamental tasks plus an auxiliary vision task, and provides a domain text corpus (SupraPMC) for domain-adaptive pretraining (DAPT).
|
| 10 |
+
|
| 11 |
+
- 📄 **Paper:** [SupraBench: A Benchmark for Supramolecular Chemistry](https://huggingface.co/papers/2606.13477)
|
| 12 |
+
- 💻 **Code:** [GitHub Repository](https://github.com/Tianyi-Billy-Ma/SupraBench)
|
| 13 |
+
|
| 14 |
+
## Tasks & Datasets
|
| 15 |
+
|
| 16 |
+
| Dataset | Task | Description |
|
| 17 |
+
|---|---|---|
|
| 18 |
+
| `bap` | Binding Affinity Prediction | Regress log $K_a$ for a host–guest pair |
|
| 19 |
+
| `tbs` | Top-Binder Selection | Pick the strongest binder among 4 candidate guests |
|
| 20 |
+
| `sid` | Solvent Identification | 6-way solvent classification from structure |
|
| 21 |
+
| `hgd` | Host-Guest Description | Open-ended QA on host/guest property profiles |
|
| 22 |
+
| `vqa` | Molecular Identification | Auxiliary vision task: identify a molecule from its image |
|
| 23 |
+
| `EU-PMC` | Text corpus | ~16M-token supramolecular corpus for DAPT |
|
| 24 |
+
| `Binding-Affinity` | Comprehensive anchor | Per-record binding data + host/guest SMILES, 2D, 3D, environment |
|
| 25 |
+
|
| 26 |
+
## Sample Usage
|
| 27 |
+
|
| 28 |
+
The benchmark uses [uv](https://docs.astral.sh/uv/) for dependency management. You can run a task against a model using the following command found in the repository:
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
uv run python src/main.py \
|
| 32 |
+
--task-config configs/tasks/bap_base.yaml \
|
| 33 |
+
--model-config configs/models/openrouter_qwen35_27b.yaml \
|
| 34 |
+
--output-dir outputs/
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Citation
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@article{ma2026suprabench,
|
| 41 |
+
title = {SupraBench: A Benchmark for Supramolecular Host--Guest Chemistry Reasoning in Large Language Models},
|
| 42 |
+
author = {Ma, Tianyi and Ma, Yijun and Wang, Zehong and Sun, Weixiang and Li, Ziming and Schmidt, Connor R. and Zhang, Chuxu and Webber, Matthew J. and Ye, Yanfang},
|
| 43 |
+
year = {2026},
|
| 44 |
+
note = {arXiv preprint, link coming soon}
|
| 45 |
+
}
|
| 46 |
+
```
|