Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
prompteus commited on
Commit
12918c9
1 Parent(s): 92ff951

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -6
README.md CHANGED
@@ -105,18 +105,27 @@ You can read more information about this process in our [technical report](https
105
 
106
  ## Content and Data splits
107
 
108
- Content and splits correspond to the original Ape210K dataset.
109
- See [ape210k dataset github](https://github.com/Chenny0808/ape210k) and [the paper](https://arxiv.org/abs/2009.11506) for more info.
 
 
 
 
 
 
 
 
110
 
111
  Columns:
112
  - `id` - id of the example
113
- - `question` - the description of the math problem. Automatically translated from `question_chinese` column into English using Google Translate
114
  - `question_chinese` - description of the math problem in Chinese
115
  - `chain` - linearized `equation`, sequence of arithmetic steps in HTML-like language that can be evaluated using our sympy-based calculator
116
- - `result` - result as a string (can be integer, float or a fraction)
117
  - `result_float` - result as a float
118
  - `equation` - a nested expression that evaluates to the correct answer
119
 
 
120
 
121
 
122
  ## Licence
@@ -126,14 +135,14 @@ MIT, consistently with the original dataset.
126
 
127
  ## Cite
128
 
129
- If you use this version of the dataset in research, please cite the [original Ape210k paper](https://arxiv.org/abs/2009.11506) and [Calc-X collection](https://arxiv.org/abs/2305.15017) as follows:
130
 
131
  ```bibtex
132
  @inproceedings{kadlcik-etal-2023-soft,
133
  title = "Calc-X and Calcformers: Empowering Arithmetical Chain-of-Thought through Interaction with Symbolic Systems",
134
  author = "Marek Kadlčík and Michal Štefánik and Ondřej Sotolář and Vlastimil Martinek",
135
  booktitle = "Proceedings of the The 2023 Conference on Empirical Methods in Natural Language Processing: Main track",
136
- month = december,
137
  year = "2023",
138
  address = "Singapore, Singapore",
139
  publisher = "Association for Computational Linguistics",
 
105
 
106
  ## Content and Data splits
107
 
108
+ In the `original-splits` config, the data splits correspond to the original Ape210K dataset. See [ape210k dataset github](https://github.com/Chenny0808/ape210k) and [the paper](https://arxiv.org/abs/2009.11506) for more info.
109
+ You can load it using:
110
+
111
+ ```python3
112
+ datasets.load_dataset("MU-NLPC/calc-ape210k", "original-splits")
113
+ ```
114
+
115
+ The default config contains filtered splits that remove in-dataset and cross-dataset data leaks within [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
116
+ In the case of Ape210k, we removed parts of the validation and test split, with around 1700 remaining in each. Refer to our paper for more details.
117
+
118
 
119
  Columns:
120
  - `id` - id of the example
121
+ - `question` - the description of the math problem. Automatically translated from the `question_chinese` column into English using Google Translate
122
  - `question_chinese` - description of the math problem in Chinese
123
  - `chain` - linearized `equation`, sequence of arithmetic steps in HTML-like language that can be evaluated using our sympy-based calculator
124
+ - `result` - result as a string (can be an integer, float, or a fraction)
125
  - `result_float` - result as a float
126
  - `equation` - a nested expression that evaluates to the correct answer
127
 
128
+ Columns `id`, `question`, `chain`, and `result` are present in all datasets in [Calc-X collection](https://huggingface.co/collections/MU-NLPC/calc-x-652fee9a6b838fd820055483).
129
 
130
 
131
  ## Licence
 
135
 
136
  ## Cite
137
 
138
+ If you use this version of the dataset in research, please cite the [original Ape210k paper](https://arxiv.org/abs/2009.11506), and [Calc-X paper](https://arxiv.org/abs/2305.15017) as follows:
139
 
140
  ```bibtex
141
  @inproceedings{kadlcik-etal-2023-soft,
142
  title = "Calc-X and Calcformers: Empowering Arithmetical Chain-of-Thought through Interaction with Symbolic Systems",
143
  author = "Marek Kadlčík and Michal Štefánik and Ondřej Sotolář and Vlastimil Martinek",
144
  booktitle = "Proceedings of the The 2023 Conference on Empirical Methods in Natural Language Processing: Main track",
145
+ month = December,
146
  year = "2023",
147
  address = "Singapore, Singapore",
148
  publisher = "Association for Computational Linguistics",