Update README.md
Browse files
README.md
CHANGED
@@ -83,23 +83,30 @@ parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
|
|
83 |
- result: The final answer to the mathematical problem (a number)
|
84 |
|
85 |
|
86 |
-
##
|
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 |
-
##
|
93 |
|
94 |
-
|
95 |
-
-
|
96 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
|
105 |
## Content and data splits
|
@@ -108,19 +115,29 @@ The dataset contains the same data instances as the original dataset except for
|
|
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 |
-
##
|
112 |
|
113 |
-
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
-
## Related work
|
117 |
|
118 |
-
|
|
|
|
|
119 |
|
120 |
|
121 |
## Cite
|
122 |
|
123 |
-
If you use this version of dataset in research, please cite the original [SVAMP paper](https://www.semanticscholar.org/paper/Are-NLP-Models-really-able-to-Solve-Simple-Math-Patel-Bhattamishra/13c4e5a6122f3fa2663f63e49537091da6532f35) and [Calc-X collection](https://arxiv.org/abs/2305.15017) as follows:
|
124 |
|
125 |
```bibtex
|
126 |
@inproceedings{kadlcik-etal-2023-soft,
|
|
|
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 |
+
## Construction process
|
93 |
|
94 |
+
We created the dataset by converting the **equation** attribute in the original dataset to a sequence (chain) of calculations, with final one being the result to the math problem.
|
95 |
+
We also perform in-dataset and cross-dataset data-leak detection within the [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
|
96 |
+
However, for SVAMP specifically, we detected no data leaks and filtered no data.
|
|
|
|
|
|
|
|
|
97 |
|
98 |
+
|
99 |
+
## Attributes:
|
100 |
+
|
101 |
+
- **id**: problem id from the original dataset
|
102 |
+
- **question**: the question intended to answer
|
103 |
+
- **chain**: series of simple operations (derived from `equation`) that leads to the solution
|
104 |
+
- **result**: the result (number) as a string
|
105 |
+
- **result_float**: result converted to a floating point
|
106 |
+
- **equation**: a nested expression that evaluates to the correct result
|
107 |
+
- **problem_type**: a category of the problem
|
108 |
+
|
109 |
+
Attributes **id**, **question**, **chain**, and **result** are present in all datasets in [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
|
110 |
|
111 |
|
112 |
## Content and data splits
|
|
|
115 |
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.
|
116 |
|
117 |
|
118 |
+
## Related work
|
119 |
|
120 |
+
This dataset was created as a part of a larger effort in training models capable of using a calculator during inference, which we call Calcformers.
|
121 |
|
122 |
+
- [**Calc-X collection**](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483) - datasets for training Calcformers
|
123 |
+
- [**Calcformers collection**](https://huggingface.co/collections/MU-NLPC/calcformers-65367392badc497807b3caf5) - calculator-using models we trained and published on HF
|
124 |
+
- [**Calc-X and Calcformers paper**](https://arxiv.org/abs/2305.15017)
|
125 |
+
- [**Calc-X and Calcformers repo**](https://github.com/prompteus/calc-x)
|
126 |
+
|
127 |
+
Here are links to the original dataset:
|
128 |
+
|
129 |
+
- [**original SVAMP dataset and repo**](https://github.com/arkilpatel/SVAMP/)
|
130 |
+
- [**original SVAMP paper**](https://www.semanticscholar.org/paper/Are-NLP-Models-really-able-to-Solve-Simple-Math-Patel-Bhattamishra/13c4e5a6122f3fa2663f63e49537091da6532f35)
|
131 |
|
|
|
132 |
|
133 |
+
## Licence
|
134 |
+
|
135 |
+
MIT, consistent with the original source dataset linked above.
|
136 |
|
137 |
|
138 |
## Cite
|
139 |
|
140 |
+
If you use this version of dataset in research, please cite the original [SVAMP paper](https://www.semanticscholar.org/paper/Are-NLP-Models-really-able-to-Solve-Simple-Math-Patel-Bhattamishra/13c4e5a6122f3fa2663f63e49537091da6532f35), and [Calc-X collection](https://arxiv.org/abs/2305.15017) as follows:
|
141 |
|
142 |
```bibtex
|
143 |
@inproceedings{kadlcik-etal-2023-soft,
|