update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
# MMRL30k: A Diverse Training Dataset for Reinforcement Learning Used by Shuffle-R1
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
The training data contains 2.1k samples from Geometry3K and 27k random selected samples from MM-EUREKA dataset. Each sample in the dataset follows the format below:
|
| 9 |
+
```
|
| 10 |
+
{
|
| 11 |
+
"problem": "your problem", # type: str
|
| 12 |
+
"images": [{"bytes": image_bytes, "path": None}], # type: list[dict]
|
| 13 |
+
"answer": "your answer", # type: str
|
| 14 |
+
"source": "data source" # type: str, not used in training
|
| 15 |
+
}
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
## Usage
|
| 19 |
+
The training data follows the format of [**EasyR1**](https://github.com/hiyouga/EasyR1).
|
| 20 |
+
|
| 21 |
+
Refer to [**Shuffle-R1**](https://github.com/xiaomi-research/shuffle-r1) for training usage.
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Acknowledgement
|
| 25 |
+
The training data is collected from [**Geometry3K**](https://huggingface.co/datasets/hiyouga/geometry3k) and [**MM-EUREKA dataset**](https://huggingface.co/datasets/FanqingM/MM-Eureka-Dataset)
|
| 26 |
+
|
| 27 |
+
## Citation
|
| 28 |
+
|
| 29 |
+
If you find our work useful for your research, please consider citing:
|
| 30 |
+
```
|
| 31 |
+
@misc{zhu2025shuffler1,
|
| 32 |
+
title={Shuffle-R1: Efficient RL framework for Multimodal Large Language Models via Data-centric Dynamic Shuffle},
|
| 33 |
+
author={Linghao Zhu, Yiran Guan, Dingkang Liang, Jianzhong Ju, Zhenbo Luo, Bin Qin, Jian Luan, Yuliang Liu, Xiang Bai},
|
| 34 |
+
year={2025},
|
| 35 |
+
eprint={2508.05612},
|
| 36 |
+
archivePrefix={arXiv},
|
| 37 |
+
primaryClass={cs.LG},
|
| 38 |
+
url={https://arxiv.org/abs/2508.05612},
|
| 39 |
+
}
|
| 40 |
+
```
|