Update README.md
Browse files
README.md
CHANGED
@@ -37,15 +37,15 @@ See [mathqa HF dataset](https://huggingface.co/datasets/math_qa) and [official w
|
|
37 |
Columns:
|
38 |
|
39 |
- `question` - th description of a mathematical problem in natural language
|
40 |
-
- `chain` - Solution in the form of step-by-step calculations encoded in simple html-like language. computed from `annotated_formula` column
|
41 |
-
- `result` - the result of the problem as string (can be integer, floating number, fraction, ...)
|
42 |
-
- `result_float` - the result converted to a float
|
43 |
- `options` - dictionary with choices 'a' to 'e' as possible solutions
|
44 |
-
- `
|
45 |
-
- `
|
|
|
|
|
|
|
46 |
- `rationale` - human-annotated free-text reasoning that leads to the correct answer
|
47 |
- `annotated_formula` - human-annotated nested expression that (approximately) evaluates to the selected correct answer
|
48 |
-
- `linear_formula` - same as `annotated_formula`, but linearized
|
49 |
- `index` - index of the example in the original math_qa dataset
|
50 |
|
51 |
|
|
|
37 |
Columns:
|
38 |
|
39 |
- `question` - th description of a mathematical problem in natural language
|
|
|
|
|
|
|
40 |
- `options` - dictionary with choices 'a' to 'e' as possible solutions
|
41 |
+
- `correct_option` - one of 'a', 'b', 'c', 'd', 'e' - should match with `result`
|
42 |
+
- `chain` - solution in the form of step-by-step calculations encoded in simple html-like language. computed from `annotated_formula` column
|
43 |
+
- `result` - the numerical result of the problem as a string (can be integer, floating number, fraction, ...)
|
44 |
+
- `result_float` - the result converted to a float
|
45 |
+
- `options_num` - same as 'options', but parsed to extract the number from string. This is best-effort only - not all values are (or can be) extracted correctly
|
46 |
- `rationale` - human-annotated free-text reasoning that leads to the correct answer
|
47 |
- `annotated_formula` - human-annotated nested expression that (approximately) evaluates to the selected correct answer
|
48 |
+
- `linear_formula` - same as `annotated_formula`, but linearized by original math_qa authors
|
49 |
- `index` - index of the example in the original math_qa dataset
|
50 |
|
51 |
|