math-eval commited on
Commit
dc17e72
1 Parent(s): 2efc460

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +136 -0
README.md CHANGED
@@ -1,3 +1,139 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # Dataset Card for Dataset Name
6
+
7
+ ## Dataset Description
8
+
9
+ - **Homepage:**
10
+ - **Repository:**
11
+ - **Paper:**
12
+ - **Leaderboard:**
13
+ - **Point of Contact:**
14
+
15
+ ### Dataset Summary
16
+
17
+ TAL-SCQ5K-EN/TAL-SCQ5K-CN are high quality mathematical competition datasets in English and Chinese language created by TAL Education Group, each consisting of 5K questions(3K training and 2K testing). The questions are in the form of multiple-choice and cover mathematical topics at the primary,junior high and high school levels. In addition, detailed solution steps are provided to facilitate CoT training and all the mathematical expressions in the questions have been presented as standard text-mode Latex.
18
+
19
+ ### Supported Tasks and Leaderboards
20
+
21
+ [More Information Needed]
22
+
23
+ ### Languages
24
+
25
+ The text in TAL-SCQ5K-EN is in English and TAL-SCQ5K-CN is in Chinese.
26
+
27
+ ## Dataset Structure
28
+
29
+ ### Data Instances
30
+
31
+ ```
32
+ {
33
+ "dataset_name": "prime_math_competition_en_single_choice_8K_dev",
34
+ "dataset_version": "2023-07-07",
35
+ "qid": "244",
36
+ "queId": "8afc802a8c304199b1040f11ffa2e92a",
37
+ "competition_source_list": [],
38
+ "difficulty": "2",
39
+ "qtype": "single_choice",
40
+ "problem": "A $14$-digit. number $666666 XY 444444$ is a multiple of $26$. If $X$ and $Y$ are both positive, what is the smallest vaue of $X+ Y$? ",
41
+ "answer_option_list": [
42
+ [{
43
+ "aoVal": "A",
44
+ "content": "$$3$$ "
45
+ }],
46
+ [{
47
+ "aoVal": "B",
48
+ "content": "$$4$$ "
49
+ }],
50
+ [{
51
+ "aoVal": "C",
52
+ "content": "$$9$$ "
53
+ }],
54
+ [{
55
+ "aoVal": "D",
56
+ "content": "$$14$$ "
57
+ }],
58
+ [{
59
+ "aoVal": "E",
60
+ "content": "None of the above "
61
+ }]
62
+ ],
63
+ "knowledge_point_routes": ["Overseas Competition->Knowledge Point->Number Theory Modules->Division without Remainders->Divisibility Rules"],
64
+ "answer_analysis": ["Since $1001$ is a multiple of $13$, $111111 = 111 \\times 1001$ is also a multiple of $13$. It follows that both $666666$ and $444444$ are both multiples of $26$. $666666XY 444444 = 66666600000000 + XY 000000 + 444444$ $\\Rightarrow XY$ must be divisible by $13$. Smallest $X+Y=1+3=4$. "],
65
+ "answer_value": "B"
66
+ }
67
+ ```
68
+
69
+ ### Data Fields
70
+
71
+ * "dataset_name": identification of the source dataset name from which TAL-SCQ5K-EN/TAL-SCQ5K-CN has been created, use only for inner of TAL education company, please ignore.
72
+ * "dataset_version": identification of the source dataset version from which TAL-SCQ5K-EN/TAL-SCQ5K-CN has been created, use only for inner of TAL education company, please ignore.
73
+ * "qid": identification of local id of the question in the source dataset from which TAL-SCQ5K-EN/TAL-SCQ5K-CN has been created, use only for inner of TAL education company, please ignore.
74
+ * "queId": identification of global id of the question, use only for inner of TAL education company, please ignore.
75
+ * "competition_source_list": identification of math competitions in which the questions appeared, if have been logged.
76
+ * "difficulty": difficulty level of the questions, value ranged from 0 to 4
77
+ * "qtype": question type, valued as "single_choice" for all the questions in this dataset indicates that all the questions are multiple-choice questions with unique ground-truth answer.
78
+ * "problem": the question string to a math competition question.
79
+ * "answer_option_list": answer choices to be selected
80
+ * "knowledge_point_routes": knowledge point route from coarse-grained to fine-grained.
81
+ * "answer_analysis": step-by-step answer analysis of the questions, which helps CoT training
82
+ * "answer_value": value of the ground-truth answer choice
83
+
84
+
85
+ ### Data Splits
86
+
87
+ <style>
88
+ table th:first-of-type {
89
+ width: 40%;
90
+ }
91
+ table th:nth-of-type(2) {
92
+ width: 30%;
93
+ }
94
+ table th:nth-of-type(3) {
95
+ width: 30%;
96
+ }
97
+ </style>
98
+
99
+ | name|train|test |
100
+ |:---:|:----:|:----:|
101
+ |TAL-SCQ5K-EN|3K |2K |
102
+ |TAL-SCQ5K-CN|3K |2K |
103
+
104
+ ## Usage
105
+
106
+ Each of the above datasets is located in a separate sub-directory. To load an individual subset, use the data_dir argument of the load_dataset() function as follows:
107
+
108
+ ```python
109
+ from datasets import load_dataset
110
+
111
+ # Load all subsets (share the same schema)
112
+ dataset = load_dataset("math-eval/TAL-SCQ5K")
113
+
114
+ # Load one of the subsets
115
+ dataset = load_dataset("math-eval/TAL-SCQ5K", data_dir="")
116
+
117
+ # Load the red subset
118
+ dataset = load_dataset("math-eval/TAL-SCQ5K", data_dir="")
119
+
120
+ ```
121
+
122
+
123
+ ## Additional Information
124
+
125
+ ### Dataset Curators
126
+
127
+ [More Information Needed]
128
+
129
+ ### Licensing Information
130
+
131
+ The TAL-SCQ5K dataset is licensed under the [MIT License](https://opensource.org/license/mit/)
132
+
133
+ ### Citation Information
134
+
135
+ [More Information Needed]
136
+
137
+ ### Contributions
138
+
139
+ [More Information Needed]