Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,5 +11,62 @@ tags:
|
|
| 11 |
- math-word-problems
|
| 12 |
- multiple-choice-qa
|
| 13 |
- mathematical-reasoning
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
- math-word-problems
|
| 12 |
- multiple-choice-qa
|
| 13 |
- mathematical-reasoning
|
| 14 |
+
modalities:
|
| 15 |
+
- text
|
| 16 |
---
|
| 17 |
|
| 18 |
+
## Introduction
|
| 19 |
+
MathMC is a Chinese mathematical reasoning dataset introduced in the paper **Teaching-Inspired Integrated Prompting Framework: A Novel Approach for Enhancing Reasoning in Large Language Models.**
|
| 20 |
+
It contains **1,000 Chinese multiple-choice math problems**, each annotated with a **gold answer** and a **detailed rationale**.
|
| 21 |
+
|
| 22 |
+
## Dataset Structure
|
| 23 |
+
|
| 24 |
+
### Data Fields
|
| 25 |
+
- `id`: unique identifier for each problem
|
| 26 |
+
- `question`: the problem statement in Chinese
|
| 27 |
+
- `options`: answer options for the multiple-choice question
|
| 28 |
+
- `answer`: the correct option
|
| 29 |
+
- `rationale`: detailed explanation for the answer
|
| 30 |
+
|
| 31 |
+
### Example
|
| 32 |
+
|
| 33 |
+
```json
|
| 34 |
+
{
|
| 35 |
+
"id": "mathmc_0001",
|
| 36 |
+
"question": "在一组数中,最大的数是15,这组数的平均数不可能是()。",
|
| 37 |
+
"options": {
|
| 38 |
+
"A": "7",
|
| 39 |
+
"B": "13",
|
| 40 |
+
"C": "27"
|
| 41 |
+
},
|
| 42 |
+
"answer": "C",
|
| 43 |
+
"rationale": "根据平均数的定义,平均数不会大于这组数中的最大值。由于最大值是15,因此27不可能是平均数。"
|
| 44 |
+
}
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
### Dataset Statistics
|
| 48 |
+
|
| 49 |
+
According to the paper, the question-type distribution of MathMC is:
|
| 50 |
+
|
| 51 |
+
- Arithmetic: 619
|
| 52 |
+
- Algebra: 113
|
| 53 |
+
- Geometry: 227
|
| 54 |
+
- Statistics: 27
|
| 55 |
+
- Reasoning: 7
|
| 56 |
+
- Others: 7
|
| 57 |
+
|
| 58 |
+
Total: 1,000 questions.
|
| 59 |
+
|
| 60 |
+
## Citation
|
| 61 |
+
|
| 62 |
+
If you use this dataset, please cite the following paper:
|
| 63 |
+
```
|
| 64 |
+
@inproceedings{tan-etal-2025-teaching,
|
| 65 |
+
title = {Teaching-Inspired Integrated Prompting Framework: A Novel Approach for Enhancing Reasoning in Large Language Models},
|
| 66 |
+
author = {Tan, Wenting and Chen, Dongxiao and Xue, Jieting and Wang, Zihao and Chen, Taijie},
|
| 67 |
+
booktitle = {Proceedings of the 31st International Conference on Computational Linguistics: Industry Track},
|
| 68 |
+
pages = {827--839},
|
| 69 |
+
year = {2025},
|
| 70 |
+
publisher = {Association for Computational Linguistics}
|
| 71 |
+
}
|
| 72 |
+
```
|