PingVortex commited on
Commit
27d6b36
·
verified ·
1 Parent(s): a571bb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -3
README.md CHANGED
@@ -1,3 +1,95 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ tags:
6
+ - math
7
+ pretty_name: Easy Math Dataset
8
+ size_categories:
9
+ - 100K<n<1M
10
+ ---
11
+
12
+ # Begginer Math Dataset
13
+
14
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
15
+
16
+ A large-scale dataset containing 424,000 math problems and solutions for basic arithmetic operations and word problems.
17
+
18
+ ## Dataset Details
19
+
20
+ - **License:** MIT
21
+ - **Task Category:** Question Answering
22
+ - **Tags:** Math, Arithmetic, Word Problems
23
+ - **Size:** 100K < n < 1M (423,810 rows)
24
+ - **Split:** Train only (424k rows)
25
+
26
+ ## Dataset Structure
27
+
28
+ Each example contains two fields:
29
+ - `input`: Math problem in natural language or numerical form
30
+ - `response`: Numerical answer (may include negative numbers and decimals)
31
+
32
+ Example rows:
33
+ ```python
34
+ {
35
+ "input": "If you have one hundred and sixty apples and found four more, how many apples do you have?",
36
+ "response": "40.0"
37
+ },
38
+ {
39
+ "input": "976-454",
40
+ "response": "522"
41
+ },
42
+ {
43
+ "input": "Calculate: nineteen times twenty three",
44
+ "response": "437"
45
+ }
46
+ ```
47
+
48
+ ## Usage
49
+
50
+ Load with Hugging Face `datasets`:
51
+ ```python
52
+ from datasets import load_dataset
53
+
54
+ dataset = load_dataset("PingVortex/begginer-math-dataset")
55
+ ```
56
+
57
+ ## Features
58
+ - Mixed format problems (word-based and numerical)
59
+ - Basic operations (addition, subtraction, multiplication, division)
60
+ - Negative number calculations
61
+ - Word problems with real-world contexts
62
+ - Both integer and decimal solutions
63
+
64
+ ## Community
65
+
66
+ Join my Discord for support and updates:
67
+ [![Discord](https://img.shields.io/discord/1115340105177006080?label=Discord)](https://discord.gg/At3CcCqcR2)
68
+
69
+ ## Dataset Creation
70
+
71
+ - **Curated by:** PingVortex
72
+ - **Format:** Auto-converted to Parquet
73
+ - **Original Size:** 35.2 MB
74
+ - **Parquet Size:** 9.35 MB
75
+
76
+ ## Example Use Cases
77
+ - Math problem solving models
78
+ - Arithmetic accuracy benchmarks
79
+ - Word problem understanding tasks
80
+ - Educational AI systems
81
+
82
+ ## Citation
83
+ If you use this dataset in your research, please credit:
84
+ ```bibtex
85
+ @misc{easymath2025,
86
+ author = {PingVortex},
87
+ title = {Easy Math Dataset},
88
+ year = {2025},
89
+ publisher = {Hugging Face},
90
+ howpublished = {\url{https://huggingface.co/datasets/PingVortex/begginer-math-dataset}}
91
+ }
92
+ ```
93
+
94
+ ## Disclaimer
95
+ While care has been taken to ensure accuracy, please verify critical calculations independently.