Improve dataset card: Add task categories, links, tags, and data download instructions
Browse filesThis PR significantly enhances the dataset card by adding:
- `task_categories: ['text-generation']` to accurately reflect the domain.
- Relevant `tags` such as `diffusion-models`, `reinforcement-learning`, `math-reasoning`, `code-generation`, and `reasoning` for better discoverability.
- The `language: en` tag, as the content is in English.
- A descriptive title and an introductory overview of the dataset.
- Links to the associated paper ([https://huggingface.co/papers/2509.06949](https://huggingface.co/papers/2509.06949)), the GitHub repository ([https://github.com/Gen-Verse/dLLM-RL](https://github.com/Gen-Verse/dLLM-RL)), and the Hugging Face project page ([https://huggingface.co/collections/Gen-Verse/trado-series-68beb6cd6a26c27cde9fe3af](https://huggingface.co/collections/Gen-Verse/trado-series-68beb6cd6a26c27cde9fe3af)).
- A "Sample Usage" section with explicit `bash` commands for downloading datasets, taken directly from the GitHub README.
- The BibTeX citation for the associated research paper.
These additions provide essential information for users, making the dataset more accessible and easier to understand.
|
@@ -1,3 +1,47 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- diffusion-models
|
| 9 |
+
- reinforcement-learning
|
| 10 |
+
- math-reasoning
|
| 11 |
+
- code-generation
|
| 12 |
+
- reasoning
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Revolutionizing Reinforcement Learning Framework for Diffusion Large Language Models Datasets
|
| 16 |
+
|
| 17 |
+
This repository contains datasets used in the paper [Revolutionizing Reinforcement Learning Framework for Diffusion Large Language Models](https://huggingface.co/papers/2509.06949). These datasets are crucial for building, training, and deploying Diffusion Large Language Models (DLMs) within the TraceRL framework, particularly for improving reasoning performance on complex math and coding tasks.
|
| 18 |
+
|
| 19 |
+
- **Paper:** [Revolutionizing Reinforcement Learning Framework for Diffusion Large Language Models](https://huggingface.co/papers/2509.06949)
|
| 20 |
+
- **Code (GitHub):** [https://github.com/Gen-Verse/dLLM-RL](https://github.com/Gen-Verse/dLLM-RL)
|
| 21 |
+
- **Project Page (Hugging Face Collection):** [https://huggingface.co/collections/Gen-Verse/trado-series-68beb6cd6a26c27cde9fe3af](https://huggingface.co/collections/Gen-Verse/trado-series-68beb6cd6a26c27cde9fe3af)
|
| 22 |
+
|
| 23 |
+
## Sample Usage (Data Download)
|
| 24 |
+
|
| 25 |
+
You can navigate to the `./data` directory within the associated GitHub repository to download datasets for evaluation and training. In that directory, you will also find detailed instructions on how to modify your own dataset.
|
| 26 |
+
|
| 27 |
+
For example, to download the `MATH500` and `MATH_train` datasets:
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
cd data
|
| 31 |
+
python download_data.py --dataset MATH500
|
| 32 |
+
python download_data.py --dataset MATH_train
|
| 33 |
+
cd ..
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
## Citation
|
| 37 |
+
|
| 38 |
+
If you use these datasets in your research, please cite the associated paper:
|
| 39 |
+
|
| 40 |
+
```bibtex
|
| 41 |
+
@article{wang2025trado,
|
| 42 |
+
title={Revolutionizing Reinforcement Learning Framework for Diffusion Large Language Models},
|
| 43 |
+
author={Wang, Yinjie and Yang, Ling and Li, Bowen and Tian, Ye and Shen, Ke and Wang, Mengdi},
|
| 44 |
+
journal={arXiv preprint arXiv:2509.06949},
|
| 45 |
+
year={2025}
|
| 46 |
+
}
|
| 47 |
+
```
|