x0root commited on
Commit
1aa04e8
·
verified ·
1 Parent(s): 0d0e9a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +144 -3
README.md CHANGED
@@ -1,3 +1,144 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Math-HQ-20k
3
+ language:
4
+ - en
5
+ license: mit
6
+ size_categories:
7
+ - 10K<n<100K
8
+ task_categories:
9
+ - text-generation
10
+ - question-answering
11
+ - mathematical-reasoning
12
+ tags:
13
+ - math
14
+ - reasoning
15
+ - synthetic
16
+ - instruction-tuning
17
+ - algebra
18
+ - combinatorics
19
+ - geometry
20
+ - number-theory
21
+ - discrete-math
22
+ - verification
23
+ ---
24
+
25
+ # Math-HQ-20k
26
+
27
+ A synthetic dataset of 20,000 English-language math reasoning examples designed for supervised fine-tuning, reasoning evaluation, and error-analysis workflows.
28
+
29
+ Each record contains a problem statement, one or more solution paths, a consistency reconciliation, a catalogue of plausible mistakes, and a short conceptual takeaway.
30
+
31
+ ## Dataset summary
32
+
33
+ - **Records:** 20,000
34
+ - **Topics:** 120
35
+ - **Difficulty levels:** 1–10
36
+ - **Format:** JSONL
37
+ - **Language:** English
38
+ - **License:** MIT
39
+ - **File size:** ~72.2 MB
40
+
41
+ ## What is inside
42
+
43
+ Each example includes:
44
+
45
+ - `id` — unique row identifier
46
+ - `topic` — topic label
47
+ - `difficulty` — integer difficulty rating from 1 to 10
48
+ - `problem_statement` — the task prompt
49
+ - `solution_paths` — multiple worked solution methods
50
+ - `reconciliation` — cross-check and robustness notes
51
+ - `error_catalogue` — plausible mistakes and why they are wrong
52
+ - `conceptual_takeaway` — short summary of the key idea
53
+
54
+ ## Technical specifications
55
+
56
+ | Metric | Value |
57
+ |---|---:|
58
+ | Total examples | 20,000 |
59
+ | Unique topics | 120 |
60
+ | Difficulty range | 1 to 10 |
61
+ | Difficulty distribution | 2,000 examples per level |
62
+ | JSONL validity | 100% parse success |
63
+ | Top-level field completeness | 100% |
64
+ | Exact prompt duplicates | 0 |
65
+ | Average problem length | 63.1 words |
66
+ | Median problem length | 62 words |
67
+ | Average solution content | 88.5 words |
68
+ | Average reconciliation content | 68.1 words |
69
+ | Average solution paths per item | 2.04 |
70
+ | Items with 2 solution paths | 19,298 |
71
+ | Items with 3 solution paths | 702 |
72
+ | Average error entries per item | 2.88 |
73
+
74
+ ## Schema
75
+
76
+ ```json
77
+ {
78
+ "id": "math-000001",
79
+ "topic": "Elementary Algebra: Linear Equations — Inverse Operations",
80
+ "difficulty": 1,
81
+ "problem_statement": "...",
82
+ "solution_paths": [
83
+ {
84
+ "method_name": "Inverse Operations",
85
+ "approach": "...",
86
+ "steps": ["...", "..."],
87
+ "final_answer": "..."
88
+ }
89
+ ],
90
+ "reconciliation": {
91
+ "consistency_check": "...",
92
+ "robustness_analysis": "..."
93
+ },
94
+ "error_catalogue": [
95
+ {
96
+ "error_description": "...",
97
+ "why_plausible": "...",
98
+ "why_wrong": "...",
99
+ "which_method_catches_it": "..."
100
+ }
101
+ ],
102
+ "conceptual_takeaway": "..."
103
+ }
104
+
105
+ Intended use
106
+
107
+ This dataset is suitable for:
108
+
109
+ supervised fine-tuning on step-by-step mathematical reasoning
110
+
111
+ multi-solution reasoning behavior
112
+
113
+ answer verification and self-check training
114
+
115
+ error detection and correction tasks
116
+
117
+ curriculum-style difficulty experiments
118
+
119
+
120
+ Notes
121
+
122
+ The dataset is synthetic and intentionally structured for reasoning quality.
123
+
124
+ Most examples contain more than one solution path to support comparison and verification.
125
+
126
+ The error catalogue is designed to model common student and model mistakes.
127
+
128
+ The prompts are intentionally consistent in style to make reasoning supervision easier.
129
+
130
+
131
+ Limitations
132
+
133
+ The dataset is not a collection of real-world student work.
134
+
135
+ The writing style is intentionally template-like, which may reduce natural-language diversity.
136
+
137
+ The dataset focuses on mathematical reasoning and does not aim to cover general open-domain QA.
138
+
139
+
140
+ Citation
141
+
142
+ If you use this dataset, please cite it as:
143
+
144
+ Math-HQ-20k. Synthetic JSONL dataset for supervised mathematical reasoning and verification.