Add paper link, GitHub link, and improve dataset card documentation
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
## Data Preparation
|
| 2 |
|
| 3 |
All the datasets are included in the [reproducebench.tar.gz](https://huggingface.co/datasets/ai9stars/ReproduceBench/blob/main/reproducebench.tar.gz).
|
|
@@ -15,4 +35,20 @@ PreproduceBench
|
|
| 15 |
|-- dataloader.py
|
| 16 |
|-- run_itransformer.py
|
| 17 |
...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- other
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# ReproduceBench
|
| 7 |
+
|
| 8 |
+
ReproduceBench is a benchmark featuring verified implementations and comprehensive metrics for evaluating both reproduction and execution fidelity of AI experiments. It was introduced in the paper [AutoReproduce: Automatic AI Experiment Reproduction with Paper Lineage](https://huggingface.co/papers/2505.20662).
|
| 9 |
+
|
| 10 |
+
**GitHub Repository:** [https://github.com/AI9Stars/AutoReproduce](https://github.com/AI9Stars/AutoReproduce)
|
| 11 |
+
|
| 12 |
+
## Download Datasets
|
| 13 |
+
|
| 14 |
+
All the datasets and human-curated reference code are available here. You can download the dataset using the Hugging Face CLI:
|
| 15 |
+
|
| 16 |
+
```bash
|
| 17 |
+
pip install -U huggingface_hub
|
| 18 |
+
huggingface-cli download --repo-type dataset --resume-download ai9stars/ReproduceBench --local-dir ReproduceBench
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
## Data Preparation
|
| 22 |
|
| 23 |
All the datasets are included in the [reproducebench.tar.gz](https://huggingface.co/datasets/ai9stars/ReproduceBench/blob/main/reproducebench.tar.gz).
|
|
|
|
| 35 |
|-- dataloader.py
|
| 36 |
|-- run_itransformer.py
|
| 37 |
...
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
|
| 42 |
+
If you find this work useful, please cite our paper:
|
| 43 |
+
|
| 44 |
+
```bibtex
|
| 45 |
+
@misc{zhao2025autoreproduceautomaticaiexperiment,
|
| 46 |
+
title={AutoReproduce: Automatic AI Experiment Reproduction with Paper Lineage},
|
| 47 |
+
author={Xuanle Zhao and Zilin Sang and Yuxuan Li and Qi Shi and Shuo Wang and Duzhen Zhang and Xu Han and Zhiyuan Liu and Maosong Sun},
|
| 48 |
+
year={2025},
|
| 49 |
+
eprint={2505.20662},
|
| 50 |
+
archivePrefix={arXiv},
|
| 51 |
+
primaryClass={cs.AI},
|
| 52 |
+
url={https://arxiv.org/abs/2505.20662},
|
| 53 |
+
}
|
| 54 |
```
|