Update README.md
Browse files
README.md
CHANGED
|
@@ -93,36 +93,49 @@ configs:
|
|
| 93 |
|
| 94 |
## Summary
|
| 95 |
|
| 96 |
-
The dataset is a collection of simple math
|
| 97 |
|
| 98 |
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
|
| 99 |
parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
|
| 100 |
|
| 101 |
- gadget: A tag whose content is intended to be evaluated by calling an external tool (sympy-based calculator in this case)
|
| 102 |
- output: An output of the external tool
|
| 103 |
-
- result: The final answer
|
| 104 |
|
| 105 |
|
| 106 |
-
##
|
| 107 |
|
| 108 |
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.
|
| 109 |
-
This dataset presents in-context scenarios where models can
|
| 110 |
|
| 111 |
|
| 112 |
## Attributes:
|
| 113 |
|
|
|
|
| 114 |
- `question`: problem description in English
|
| 115 |
- `question_arabic`: problem description in Arabic
|
| 116 |
- `chain`: series of simple operations (derived from `expression`) that lead to the solution
|
| 117 |
- `result`: the solution for x as a number or fraction (string)
|
| 118 |
- `result_float`: same as `result` but converted to a float
|
| 119 |
-
- `equation`: equation that needs to be solved for `x` to obtain the result. Usually in
|
| 120 |
- `expression`: arithmetic expression derived from `equation` that solves it for `x`
|
| 121 |
|
| 122 |
|
| 123 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
|
| 125 |
-
Both are consistent with the original source dataset.
|
| 126 |
|
| 127 |
|
| 128 |
## Licence
|
|
@@ -132,12 +145,12 @@ MIT, consistent with the original source dataset linked above.
|
|
| 132 |
|
| 133 |
## Related work
|
| 134 |
|
| 135 |
-
If you are interested in related datasets (or models), check out the MU-NLPC organization here on HuggingFace. We have released a few other datasets in a compatible format, and several models that use external calculator during inference.
|
| 136 |
|
| 137 |
|
| 138 |
## Cite
|
| 139 |
|
| 140 |
-
If you use this version of dataset in research, please cite the original [MAWPS paper](https://aclanthology.org/N16-1136/) and [Calc-X
|
| 141 |
|
| 142 |
```bibtex
|
| 143 |
@inproceedings{kadlcik-etal-2023-soft,
|
|
|
|
| 93 |
|
| 94 |
## Summary
|
| 95 |
|
| 96 |
+
The dataset is a collection of simple math word problems focused on arithmetics. It is derived from <https://huggingface.co/datasets/omarxadel/MaWPS-ar>.
|
| 97 |
|
| 98 |
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
|
| 99 |
parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
|
| 100 |
|
| 101 |
- gadget: A tag whose content is intended to be evaluated by calling an external tool (sympy-based calculator in this case)
|
| 102 |
- output: An output of the external tool
|
| 103 |
+
- result: The final answer to the mathematical problem (a number)
|
| 104 |
|
| 105 |
|
| 106 |
+
## Supported Tasks
|
| 107 |
|
| 108 |
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.
|
| 109 |
+
This dataset presents in-context scenarios where models can outsource the computations in the reasoning chain to a calculator.
|
| 110 |
|
| 111 |
|
| 112 |
## Attributes:
|
| 113 |
|
| 114 |
+
- `id`: id of the example
|
| 115 |
- `question`: problem description in English
|
| 116 |
- `question_arabic`: problem description in Arabic
|
| 117 |
- `chain`: series of simple operations (derived from `expression`) that lead to the solution
|
| 118 |
- `result`: the solution for x as a number or fraction (string)
|
| 119 |
- `result_float`: same as `result` but converted to a float
|
| 120 |
+
- `equation`: an equation that needs to be solved for `x` to obtain the result. Usually in the form of "x = ..." but not always.
|
| 121 |
- `expression`: arithmetic expression derived from `equation` that solves it for `x`
|
| 122 |
|
| 123 |
|
| 124 |
+
## Data splits
|
| 125 |
+
|
| 126 |
+
We provide 2 variants of the dataset. In the first one, the data splits correspond to the original one and can be loaded using:
|
| 127 |
+
|
| 128 |
+
```python3
|
| 129 |
+
datasets.load_dataset("MU-NLPC/calc-mawps", "original-splits")
|
| 130 |
+
```
|
| 131 |
+
|
| 132 |
+
The second one is filtered to prevent data leaks (overly similar examples in train and test/val splits) in between and across datasets in [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
|
| 133 |
+
Specifically, we filtered out around 2,500 near-duplicates from the train set that were similar to some instances in the MAWPS val and test splits and ASDiv-A test split. You can load this variant via:
|
| 134 |
+
|
| 135 |
+
```python3
|
| 136 |
+
datasets.load_dataset("MU-NLPC/calc-mawps")
|
| 137 |
+
```
|
| 138 |
|
|
|
|
| 139 |
|
| 140 |
|
| 141 |
## Licence
|
|
|
|
| 145 |
|
| 146 |
## Related work
|
| 147 |
|
| 148 |
+
If you are interested in related datasets (or models), check out the MU-NLPC organization here on HuggingFace. We have released a few other datasets in a compatible format, and several models that use an external calculator during inference.
|
| 149 |
|
| 150 |
|
| 151 |
## Cite
|
| 152 |
|
| 153 |
+
If you use this version of the dataset in research, please cite the original [MAWPS paper](https://aclanthology.org/N16-1136/), and [Calc-X paper](https://arxiv.org/abs/2305.15017) as follows:
|
| 154 |
|
| 155 |
```bibtex
|
| 156 |
@inproceedings{kadlcik-etal-2023-soft,
|