PingVortex commited on
Commit
0371fca
·
verified ·
1 Parent(s): de6d56b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -31
README.md CHANGED
@@ -19,7 +19,7 @@ A large-scale dataset containing 1,000,000 math problems and solutions for basic
19
 
20
  - **License:** MIT
21
  - **Task Category:** Question Answering
22
- - **Tags:** Math, Arithmetic, Word Problems
23
  - **Size:** 100K < n < 1M 1,000,000 rows)
24
  - **Split:** Train only (1M rows)
25
 
@@ -29,21 +29,6 @@ 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
 
@@ -51,26 +36,14 @@ Load with Hugging Face `datasets`:
51
  ```python
52
  from datasets import load_dataset
53
 
54
- dataset = load_dataset("PingVortex/beginner-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) (Server is not invalid)
68
 
69
- ## Example Use Cases
70
- - Math problem solving models
71
- - Arithmetic accuracy benchmarks
72
- - Word problem understanding tasks
73
- - Educational AI systems
74
 
75
  ## Citation
76
  If you use this dataset in your research, please credit:
@@ -80,6 +53,6 @@ If you use this dataset in your research, please credit:
80
  title = {Easy Math Dataset},
81
  year = {2025},
82
  publisher = {Hugging Face},
83
- howpublished = {\url{https://huggingface.co/datasets/PingVortex/beginner-math-dataset}}
84
  }
85
  ```
 
19
 
20
  - **License:** MIT
21
  - **Task Category:** Question Answering
22
+ - **Tags:** Math, 1st grade
23
  - **Size:** 100K < n < 1M 1,000,000 rows)
24
  - **Split:** Train only (1M rows)
25
 
 
29
  - `input`: Math problem in natural language or numerical form
30
  - `response`: Numerical answer (may include negative numbers and decimals)
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  ## Usage
34
 
 
36
  ```python
37
  from datasets import load_dataset
38
 
39
+ dataset = load_dataset("PingVortex/simple-math")
40
  ```
41
 
 
 
 
 
 
 
 
42
  ## Community
43
 
44
  Join my Discord for support and updates:
45
+ [![Discord](https://img.shields.io/discord/1115340105177006080?label=Discord)](https://discord.gg/Efe5ws6jcP)
46
 
 
 
 
 
 
47
 
48
  ## Citation
49
  If you use this dataset in your research, please credit:
 
53
  title = {Easy Math Dataset},
54
  year = {2025},
55
  publisher = {Hugging Face},
56
+ howpublished = {\url{https://huggingface.co/datasets/PingVortex/simple-math}}
57
  }
58
  ```