Fork of Qwen/ProcessBench
Browse files- .gitattributes +0 -1
- README.md +67 -0
- gsm8k.json +0 -0
- math.json +0 -0
- olympiadbench.json +0 -0
- omnimath.json +0 -0
.gitattributes
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
-
*.avro filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 6 |
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- math
|
| 6 |
+
- reasoning
|
| 7 |
+
size_categories:
|
| 8 |
+
- 1K<n<10K
|
| 9 |
+
license: apache-2.0
|
| 10 |
+
configs:
|
| 11 |
+
- config_name: default
|
| 12 |
+
data_files:
|
| 13 |
+
- split: gsm8k
|
| 14 |
+
path: "gsm8k.json"
|
| 15 |
+
- split: math
|
| 16 |
+
path: "math.json"
|
| 17 |
+
- split: olympiadbench
|
| 18 |
+
path: "olympiadbench.json"
|
| 19 |
+
- split: omnimath
|
| 20 |
+
path: "omnimath.json"
|
| 21 |
+
---
|
| 22 |
+
# ProcessBench
|
| 23 |
+
|
| 24 |
+
This repository contains the dataset of the [ProcessBench](https://huggingface.co/papers/2412.06559) benchmark proposed by Qwen Team.
|
| 25 |
+
|
| 26 |
+
You can refer to our [GitHub repository](https://github.com/QwenLM/ProcessBench) for the evaluation code and the prompt templates we use in this work.
|
| 27 |
+
|
| 28 |
+
If you find this work relevant or helpful to your work, please kindly cite us:
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
@article{processbench,
|
| 32 |
+
title={ProcessBench: Identifying Process Errors in Mathematical Reasoning},
|
| 33 |
+
author={
|
| 34 |
+
Chujie Zheng and Zhenru Zhang and Beichen Zhang and Runji Lin and Keming Lu and
|
| 35 |
+
Bowen Yu and Dayiheng Liu and Jingren Zhou and Junyang Lin
|
| 36 |
+
},
|
| 37 |
+
journal={arXiv preprint arXiv:2412.06559},
|
| 38 |
+
year={2024}
|
| 39 |
+
}
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Data Usage
|
| 43 |
+
|
| 44 |
+
You can use the following code to preview the dataset:
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
import json
|
| 48 |
+
from datasets import load_dataset
|
| 49 |
+
|
| 50 |
+
dataset = load_dataset('Qwen/ProcessBench', split='gsm8k')
|
| 51 |
+
print(json.dumps(dataset[0], indent=2))
|
| 52 |
+
|
| 53 |
+
# Expected output:
|
| 54 |
+
"""
|
| 55 |
+
{
|
| 56 |
+
"id": "gsm8k-0",
|
| 57 |
+
"generator": "Qwen2-7B-Instruct",
|
| 58 |
+
"problem": "Sue lives in a fun neighborhood...",
|
| 59 |
+
"steps": [
|
| 60 |
+
"To find out how many more pink plastic flamingos were out than...",
|
| 61 |
+
...
|
| 62 |
+
],
|
| 63 |
+
"final_answer_correct": false,
|
| 64 |
+
"label": 1
|
| 65 |
+
}
|
| 66 |
+
"""
|
| 67 |
+
```
|
gsm8k.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
math.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
olympiadbench.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
omnimath.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|