Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,75 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
- question-answering
|
| 6 |
+
tags:
|
| 7 |
+
- natural-language-processing
|
| 8 |
+
- jsonl
|
| 9 |
+
- nlp
|
| 10 |
+
- qa
|
| 11 |
+
- question-answering
|
| 12 |
+
- questions-and-answers
|
| 13 |
+
- gammacorpus
|
| 14 |
+
- math
|
| 15 |
+
pretty_name: GammaCorpus
|
| 16 |
+
size_categories:
|
| 17 |
+
- 1M<n<10M
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# GammaCorpus: Math QA 2m
|
| 21 |
+
|
| 22 |
+
## What is it?
|
| 23 |
+
|
| 24 |
+
**GammaCorpus Math QA 2m** is a dataset that consists of 2,760,000 mathematical question-and-answer. It consists of 917,196 addition questions, 916,662 subtraction questions, 917,015 multiplication questions, and 9,126 division questions.
|
| 25 |
+
|
| 26 |
+
## Dataset Summary
|
| 27 |
+
|
| 28 |
+
- **Number of Rows**: 2,760,000
|
| 29 |
+
- **Format**: JSONL
|
| 30 |
+
- **Data Type**: Mathematical Question Pairs
|
| 31 |
+
|
| 32 |
+
## Dataset Structure
|
| 33 |
+
|
| 34 |
+
### Data Instances
|
| 35 |
+
|
| 36 |
+
The dataset is formatted in JSONL, where each line is a JSON object representing a single question-answer pair. Below is an example:
|
| 37 |
+
|
| 38 |
+
```jsonl
|
| 39 |
+
{
|
| 40 |
+
"question": "108 - 924",
|
| 41 |
+
"answer": "-816"
|
| 42 |
+
}
|
| 43 |
+
{
|
| 44 |
+
"question": "62 + 578",
|
| 45 |
+
"answer": "640"
|
| 46 |
+
}
|
| 47 |
+
{
|
| 48 |
+
"question": "592 * 65",
|
| 49 |
+
"answer": "38480"
|
| 50 |
+
}
|
| 51 |
+
{
|
| 52 |
+
"question": "81 / 6",
|
| 53 |
+
"answer": "13.5"
|
| 54 |
+
}
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
### Data Fields
|
| 58 |
+
|
| 59 |
+
- **`question` (string)**: The math question to be answered.
|
| 60 |
+
- **`answer` (string)**: The corresponding answer to the question.
|
| 61 |
+
|
| 62 |
+
## Considerations for Using the Data
|
| 63 |
+
|
| 64 |
+
### Limitations
|
| 65 |
+
|
| 66 |
+
While this dataset is designed to minimise biases, the following considerations should be kept in mind:
|
| 67 |
+
|
| 68 |
+
- Numbers of division questions rows are substantially lower than other question types.
|
| 69 |
+
- The length and complexity of numbers are limited and larger, more complex queries are not supported.
|
| 70 |
+
|
| 71 |
+
## Additional Information
|
| 72 |
+
|
| 73 |
+
### Licensing Information
|
| 74 |
+
|
| 75 |
+
The dataset is released under the **[Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0)**. Please refer to the license for usage rights and restrictions.
|