Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
prompteus commited on
Commit
dc844c0
·
1 Parent(s): f3c893e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -7
README.md CHANGED
@@ -73,37 +73,39 @@ configs:
73
 
74
  ## Summary
75
 
76
- The dataset is a collection of simple math world problems focused on arithmetics. It is derived from <https://github.com/arkilpatel/SVAMP/>.
77
 
78
  The main addition in this dataset variant is the `chain` column. It was created by converting the solution to a simple html-like language that can be easily
79
  parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
80
 
81
  - gadget: A tag whose content is intended to be evaluated by calling an external tool (sympy-based calculator in this case)
82
  - output: An output of the external tool
83
- - result: The final answer of the mathematical problem (a number)
84
 
85
 
86
  ## Supported Tasks
87
 
88
  This variant of the dataset is intended for training Chain-of-Thought reasoning models able to use external tools to enhance the factuality of their responses.
89
- This dataset presents in-context scenarios where models can out-source the computations in the reasoning chain to a calculator.
90
 
91
 
92
- ## Attributes:
93
 
94
  - `id`: problem id from the original dataset
95
  - `question`: the question intended to answer
96
  - `chain`: series of simple operations (derived from `equation`) that leads to the solution
97
  - `result`: the result (number) as a string
98
  - `result_float`: result converted to a floating point
99
- - `equation`: an nested expression that evaluates to the correct result
100
  - `problem_type`: a category of the problem
101
 
 
 
102
 
103
  ## Content and data splits
104
 
105
- The dataset contains the same data instances ad the original dataset except for a correction of inconsistency between `equation` and `answer` in one data instance.
106
- To the best of our knowledge, the original dataset does not contain an official train-test split, and we do not create one. However, original authors have used cross-validation in the official repository - for more info, see <https://github.com/arkilpatel/SVAMP/>.
107
 
108
 
109
  ## Licence
 
73
 
74
  ## Summary
75
 
76
+ The dataset is a collection of simple math word problems focused on arithmetics. It is derived from <https://github.com/arkilpatel/SVAMP/>.
77
 
78
  The main addition in this dataset variant is the `chain` column. It was created by converting the solution to a simple html-like language that can be easily
79
  parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
80
 
81
  - gadget: A tag whose content is intended to be evaluated by calling an external tool (sympy-based calculator in this case)
82
  - output: An output of the external tool
83
+ - result: The final answer to the mathematical problem (a number)
84
 
85
 
86
  ## Supported Tasks
87
 
88
  This variant of the dataset is intended for training Chain-of-Thought reasoning models able to use external tools to enhance the factuality of their responses.
89
+ This dataset presents in-context scenarios where models can outsource the computations in the reasoning chain to a calculator.
90
 
91
 
92
+ ## Features:
93
 
94
  - `id`: problem id from the original dataset
95
  - `question`: the question intended to answer
96
  - `chain`: series of simple operations (derived from `equation`) that leads to the solution
97
  - `result`: the result (number) as a string
98
  - `result_float`: result converted to a floating point
99
+ - `equation`: a nested expression that evaluates to the correct result
100
  - `problem_type`: a category of the problem
101
 
102
+ Features `id`, `question`, `chain`, and `result` are present in all datasets in [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
103
+
104
 
105
  ## Content and data splits
106
 
107
+ The dataset contains the same data instances as the original dataset except for a correction of inconsistency between `equation` and `answer` in one data instance.
108
+ To the best of our knowledge, the original dataset does not contain an official train-test split. We treat the whole dataset as a testing benchmark.
109
 
110
 
111
  ## Licence