SallyTan commited on
Commit
0c2251e
·
verified ·
1 Parent(s): 03ff89f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -14
README.md CHANGED
@@ -22,25 +22,46 @@ It contains **1,000 Chinese multiple-choice math problems**, each annotated with
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
 
 
22
  ## Dataset Structure
23
 
24
  ### Data Fields
25
+ - `qtype`: question type. In MathMC, this is typically `"CHOICE"` for multiple-choice questions.
26
+ - `quest_stem`: the main question content.
27
+ - `quest_stem.text`: the problem statement in Chinese.
28
+ - `quest_stem.options`: a list of answer options.
29
+ - `bullet`: the option label, such as `"A"`, `"B"`, `"C"`.
30
+ - `text`: the content of the option.
31
+ - `quest_ref`: reference answers and explanations.
32
+ - `quest_ref.texts`: the correct answer(s), stored as a list.
33
+ - `quest_ref.analyses`: the explanation(s) or rationale(s), stored as a list.
34
 
35
  ### Example
36
 
37
  ```json
38
  {
39
+ "qtype": "CHOICE",
40
+ "quest_stem": {
41
+ "options": [
42
+ {
43
+ "bullet": "A",
44
+ "text": "扩大到原来的10倍"
45
+ },
46
+ {
47
+ "bullet": "B",
48
+ "text": "扩大到原来的100倍"
49
+ },
50
+ {
51
+ "bullet": "C",
52
+ "text": "扩大到原来的1000倍"
53
+ }
54
+ ],
55
+ "text": "在计算7.2÷0.12时,需要把被除数和除数同时( ) "
56
+ },
57
+ "quest_ref": {
58
+ "texts": [
59
+ "B"
60
+ ],
61
+ "analyses": [
62
+ "根据商不变性质:被除数和除数同时扩大或缩小相同的倍数(0除外),商不变;据此解答."
63
+ ]
64
+ }
65
  }
66
  ```
67