Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
prompteus commited on
Commit
44e4f17
1 Parent(s): 465abe8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -8
README.md CHANGED
@@ -107,15 +107,15 @@ You can read more information about this process in our [Calc-X paper](https://a
107
 
108
  ## Attributes
109
 
110
- - `id` - id of the example
111
- - `question` - the description of the math problem. Automatically translated from the `question_chinese` column into English using Google Translate
112
- - `question_chinese` - description of the math problem in Chinese
113
- - `chain` - linearized `equation`, sequence of arithmetic steps in HTML-like language that can be evaluated using our sympy-based calculator
114
- - `result` - result as a string (can be an integer, float, or a fraction)
115
- - `result_float` - result as a float
116
- - `equation` - a nested expression that evaluates to the correct answer
117
 
118
- Attributes `id`, `question`, `chain`, and `result` are present in all datasets in [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
119
 
120
 
121
 
@@ -136,6 +136,14 @@ datasets.load_dataset("MU-NLPC/calc-ape210k", "original-splits")
136
  ```
137
 
138
 
 
 
 
 
 
 
 
 
139
  ## Licence
140
 
141
  MIT, consistently with the original dataset.
 
107
 
108
  ## Attributes
109
 
110
+ - **id** - id of the example
111
+ - **question** - the description of the math problem. Automatically translated from the `question_chinese` column into English using Google Translate
112
+ - **question_chinese** - the original description of the math problem in Chinese
113
+ - **chain** - linearized `equation`, sequence of arithmetic steps in HTML-like language that can be evaluated using our sympy-based calculator
114
+ - **result** - result as a string (can be an integer, float, or a fraction)
115
+ - **result_float** - result, converted to a float
116
+ - **equation** - a nested expression that evaluates to the correct answer
117
 
118
+ Attributes **id**, **question**, **chain**, and **result** are present in all datasets in [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
119
 
120
 
121
 
 
136
  ```
137
 
138
 
139
+ ## Related work
140
+
141
+ This dataset was created as a part of a larger effort in training models capable of using a calculator during inference.
142
+ You can read more about our work in our paper [Calc-X anc Calcformers](https://arxiv.org/abs/2305.15017).
143
+ We have released a collection of datasets on solving math problems with calculator interactions on HuggingFace called [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
144
+ We have also trained and published several T5-based models that use calculator during inference to perform arithmetics correctly, which we call [Calcformers](https://huggingface.co/collections/MU-NLPC/calcformers-65367392badc497807b3caf5).
145
+
146
+
147
  ## Licence
148
 
149
  MIT, consistently with the original dataset.