Datasets:
Marek Kadlčík
commited on
Commit
•
035424f
1
Parent(s):
6f590b8
Update README.md
Browse files
README.md
CHANGED
@@ -16,7 +16,50 @@ dataset_info:
|
|
16 |
num_examples: 1319
|
17 |
download_size: 4400374
|
18 |
dataset_size: 8858309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
---
|
20 |
# Dataset Card for "Calc-gsm8k"
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
num_examples: 1319
|
17 |
download_size: 4400374
|
18 |
dataset_size: 8858309
|
19 |
+
license: mit
|
20 |
+
task_categories:
|
21 |
+
- text-generation
|
22 |
+
- question-answering
|
23 |
+
language:
|
24 |
+
- en
|
25 |
+
size_categories:
|
26 |
+
- 1K<n<10K
|
27 |
---
|
28 |
# Dataset Card for "Calc-gsm8k"
|
29 |
|
30 |
+
|
31 |
+
## Summary
|
32 |
+
|
33 |
+
This dataset is an instance of gsm8k dataset, converted to a simple html-like language that can be easily parsed (e.g. by BeautifulSoup). The data contains 3 types of tags:
|
34 |
+
- gadget: A tag whose content is intended to be evaluated by calling an external tool (sympy-based calculator in this case)
|
35 |
+
- output: An output of the external tool
|
36 |
+
- result: The final answer of the mathematical problem (a number)
|
37 |
+
|
38 |
+
|
39 |
+
## Supported Tasks
|
40 |
+
|
41 |
+
The dataset is intended for training Chain-of-Thought reasoning **models able to use external tools** to enhance the factuality of their responses.
|
42 |
+
This dataset presents in-context scenarios where models can out-source the computations in the reasoning chain to a calculator.
|
43 |
+
|
44 |
+
|
45 |
+
## Construction Process
|
46 |
+
|
47 |
+
The answers in the original dataset was in in a structured but non-standard format. So, the answers were parsed, all arithmetical expressions
|
48 |
+
were evaluated using a sympy-based calculator, the outputs were checked to be consistent with the intermediate results and finally exported
|
49 |
+
into a simple html-like language that BeautifulSoup can parse.
|
50 |
+
|
51 |
+
|
52 |
+
## Content and Data splits
|
53 |
+
|
54 |
+
Content and splits correspond to the original gsm8k dataset.
|
55 |
+
See [gsm8k HF dataset](https://huggingface.co/datasets/gsm8k) and [official repository](https://github.com/openai/grade-school-math) for more info.
|
56 |
+
|
57 |
+
|
58 |
+
## Licence
|
59 |
+
|
60 |
+
MIT, consistently with the original dataset.
|
61 |
+
|
62 |
+
|
63 |
+
## Cite
|
64 |
+
|
65 |
+
If you use this dataset in research, please cite the [original creators](https://arxiv.org/abs/2110.14168).
|