Gugu8 commited on
Commit
0f2cb7f
·
verified ·
1 Parent(s): a6f4fb0

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ tags:
6
+ - synthetic
7
+ - maths
8
+ ---
9
+ # Clean Math Reasoning Dataset
10
+
11
+ A clean dataset for training and evaluating language models on mathematical problem solving.
12
+
13
+ The dataset contains concise mathematical question-and-answer pairs designed to improve model performance on structured numerical reasoning tasks.
14
+
15
+ ## Dataset Structure
16
+
17
+ The dataset contains two fields:
18
+
19
+ | Column | Description |
20
+ | ---------- | ---------------------------------- |
21
+ | `prompt` | A mathematical problem or question |
22
+ | `response` | The corresponding solution |
23
+
24
+ Example:
25
+
26
+ ```text
27
+ prompt:
28
+ 48392+92831=?
29
+
30
+ response:
31
+ 48392+92831=141223
32
+ ```
33
+
34
+ ## Tasks Covered
35
+
36
+ The dataset includes examples across several mathematical areas:
37
+
38
+ * Arithmetic operations
39
+ * Algebra
40
+ * Fractions
41
+ * Percentages
42
+ * Powers and exponents
43
+ * Equations
44
+ * Geometry calculations
45
+
46
+ ## Features
47
+
48
+ * Clean CSV format
49
+ * Consistent input-output structure
50
+ * No missing values
51
+ * Compact and efficient formatting
52
+ * Suitable for language model training and evaluation
53
+
54
+ ## Intended Uses
55
+
56
+ This dataset can be used for:
57
+
58
+ * Supervised fine-tuning
59
+ * Mathematical reasoning experiments
60
+ * Model evaluation
61
+ * Educational AI systems
62
+ * Benchmarking arithmetic capabilities
63
+
64
+ ## Data Format
65
+
66
+ CSV format:
67
+
68
+ ```csv
69
+ prompt,response
70
+ "12^5=?","12^5=248832"
71
+ "25% of 8400=?","8400*25/100=2100"
72
+ "Solve 7x+9=72","7x=63, x=9"
73
+ ```
74
+
75
+ ## Limitations
76
+
77
+ This dataset focuses on structured mathematical tasks. It is intended to improve performance on numerical reasoning patterns and does not cover advanced mathematical topics such as formal proofs, abstract mathematics, or complex real-world modeling.
78
+
79
+ ## License
80
+
81
+ Open Data Attribution Training Disclosure License (ODATL‑1.0)