Update README.md
Browse files
README.md
CHANGED
@@ -36,15 +36,18 @@ See [mathqa HF dataset](https://huggingface.co/datasets/math_qa) and [official w
|
|
36 |
|
37 |
Columns:
|
38 |
|
39 |
-
- `
|
|
|
|
|
|
|
40 |
- `options` - dictionary with choices 'a' to 'e' as possible solutions
|
41 |
-
- `
|
|
|
42 |
- `rationale` - human-annotated free-text reasoning that leads to the correct answer
|
43 |
- `annotated_formula` - human-annotated nested expression that (approximately) evaluates to the selected correct answer
|
44 |
- `linear_formula` - same as `annotated_formula`, but linearized. Provided by original math_qa authors
|
45 |
-
- `chain` - linearized `annotated_formula`, provided by us. Converted to HTML-like language with expressions that can be evaluated using our sympy-based calculator
|
46 |
- `index` - index of the example in the original math_qa dataset
|
47 |
-
|
48 |
|
49 |
|
50 |
|
|
|
36 |
|
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 |
+
- `options_num` - same as 'options', but with simple parsing to extract the number from string. This is best-effort only - not all values are (or can be) extracted correctly
|
45 |
+
- `correct_option` - correct options, one of 'a', ..., 'e', should match with `result`
|
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. Provided by original math_qa authors
|
|
|
49 |
- `index` - index of the example in the original math_qa dataset
|
50 |
+
|
51 |
|
52 |
|
53 |
|