Datasets:
Update README.md
Browse files
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 |
-
- `
|
| 26 |
-
- `
|
| 27 |
-
- `
|
| 28 |
-
- `
|
| 29 |
-
- `
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
### Example
|
| 32 |
|
| 33 |
```json
|
| 34 |
{
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|