SallyTan commited on
Commit
aac5be7
·
verified ·
1 Parent(s): 825e011

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -3
README.md CHANGED
@@ -1,3 +1,79 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - zh
7
+ size_categories:
8
+ - n<1K
9
+ tags:
10
+ - chinese
11
+ - math-word-problems
12
+ - true-false
13
+ - mathematical-reasoning
14
+ modalities:
15
+ - text
16
+ libraries:
17
+ - Datasets
18
+ ---
19
+
20
+ ## Introduction
21
+ MathToF 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.**
22
+
23
+ It contains **1,000 Chinese true-or-false math problems**, each annotated with a **binary label (True/False)** and a **detailed rationale**.
24
+
25
+ ## Dataset Structure
26
+
27
+ ### Data Fields
28
+ - `qtype`: question type. In MathToF, this is typically `"JUDGE"`.
29
+ - `quest_stem`: the main question content.
30
+ - `quest_stem.text`: the problem statement in Chinese.
31
+ - `quest_ref`: reference answers and explanations.
32
+ - `quest_ref.texts`: the ground-truth label(s), typically `"True"` or `"False"`.
33
+ - `quest_ref.analyses`: the explanation(s), stored as a list.
34
+
35
+ ### Example
36
+
37
+ ```json
38
+ {
39
+ "qtype": "JUDGE",
40
+ "quest_stem": {
41
+ "text": "三位数减三位数差一定是三位数。"
42
+ },
43
+ "quest_ref": {
44
+ "texts": [
45
+ "False"
46
+ ],
47
+ "analyses": [
48
+ "如两个三位数分别为:150,100。则150-100=50,其差50是两位数,故题干描述错误。"
49
+ ]
50
+ }
51
+ }
52
+ ```
53
+
54
+ ### Dataset Statistics
55
+
56
+ According to the paper, the question-type distribution of MathToF is:
57
+
58
+ - Arithmetic: 675
59
+ - Algebra: 61
60
+ - Geometry: 197
61
+ - Statistics: 37
62
+ - Reasoning: 13
63
+ - Others: 17
64
+
65
+ Total: 1,000 questions.
66
+
67
+ ## Citation
68
+
69
+ If you use this dataset, please cite the following paper:
70
+ ```
71
+ @inproceedings{tan-etal-2025-teaching,
72
+ title = {Teaching-Inspired Integrated Prompting Framework: A Novel Approach for Enhancing Reasoning in Large Language Models},
73
+ author = {Tan, Wenting and Chen, Dongxiao and Xue, Jieting and Wang, Zihao and Chen, Taijie},
74
+ booktitle = {Proceedings of the 31st International Conference on Computational Linguistics: Industry Track},
75
+ pages = {827--839},
76
+ year = {2025},
77
+ publisher = {Association for Computational Linguistics}
78
+ }
79
+ ```