Datasets:

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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -1,3 +1,68 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - math world problems
9
+ - math
10
+ - arithmetics
11
+ size_categories:
12
+ - 1K<n<10K
13
  ---
14
+
15
+
16
+
17
+ # Dataset Card for Calc-MAWPS
18
+
19
+
20
+ ## Summary
21
+
22
+ The dataset is a collection of simple math world problems focused on arithmetics. It is derived from <https://github.com/arkilpatel/SVAMP/>.
23
+
24
+ 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
25
+ parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
26
+
27
+ - gadget: A tag whose content is intended to be evaluated by calling an external tool (sympy-based calculator in this case)
28
+ - output: An output of the external tool
29
+ - result: The final answer of the mathematical problem (a number)
30
+
31
+
32
+ ## Supported Tasks
33
+
34
+ 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.
35
+ This dataset presents in-context scenarios where models can out-source the computations in the reasoning chain to a calculator.
36
+
37
+
38
+ ## Attributes:
39
+
40
+ - `id`: problem id from the original dataset
41
+ - `body`: problem setup in english
42
+ - `question`: the question intended to answer
43
+ - `equation`: an nested expression that evaluates to the correct result
44
+ - `answer`: result as a floating point
45
+ - `type`: a category of the problem
46
+ - `chain`: series of simple operations (derived from `equation`) that leads to the solution
47
+
48
+
49
+ ## Content and data splits
50
+
51
+ 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.
52
+ 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/>.
53
+
54
+
55
+ ## Licence
56
+
57
+ MIT, consistent with the original source dataset linked above.
58
+
59
+
60
+ ## Related work
61
+
62
+ If you are interested in related datasets (or models), check out the MU-NLPC organization here on HuggingFace. We have relesed few other datasets in a compatible format, and several models that use external calculator during inference.
63
+
64
+
65
+ ## Cite
66
+
67
+ If you use this version of dataset in research, please cite the original [MAWPS paper](https://aclanthology.org/N16-1136/).
68
+ TODO