sagheerlabs commited on
Commit
d79bca7
·
verified ·
1 Parent(s): 3e12341

Fix viewer: json array -> jsonl lines + move Problem Types above Quickstart

Browse files
Files changed (4) hide show
  1. README.md +23 -21
  2. json/test.json +0 -0
  3. json/train.json +2 -2
  4. json/val.json +0 -0
README.md CHANGED
@@ -46,6 +46,28 @@ This dataset was built to train **100M-ish models** that benefit disproportionat
46
 
47
  Small models (25M-100M) trained on our earlier 5-minute budget went from 0.5% → 89.8% with scratchpad formats and to **98.3%** with `reverse-answers + scratchpad` - format and verification matter more than scale. This release distills those findings into a publishable, 100% verified dataset.
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  ## Quickstart
50
 
51
  ```python
@@ -83,6 +105,7 @@ ds_json = load_dataset("SagheerLab/Arithmetic-Reasoning", data_files={
83
  # or directly: load_dataset("json", data_files="hf://datasets/SagheerLab/Arithmetic-Reasoning/json/train.json")
84
  ```
85
 
 
86
  # Dataset Summary
87
 
88
  - **Size:** 150,000 examples (135K train / 7.5K val / 7.5K test), 100% programmatically verified
@@ -90,27 +113,6 @@ ds_json = load_dataset("SagheerLab/Arithmetic-Reasoning", data_files={
90
  - **Tiers:** `easy 30% (1-2 digits, 1 step) | intermediate 35% (3-4 digits, 2-3 steps) | hard 25% (5-6 digits, 3-8 steps) | very hard 10% (competition/GSM8K-style)`
91
  - **License:** Apache 2.0 - see [Licensing](#licensing-information)
92
 
93
- # Problem Types - Top 10 + 8 more
94
-
95
- We cover 18+ operation families. Each `instruction` is sampled from 20+ phrasings with varied names/objects so at 1M tokens <1% duplicates.
96
-
97
- | # | Operation | Example Instruction | Reasoning | Answer |
98
- |---|-----------|---------------------|-----------|--------|
99
- | 1 | **Addition** | `Calculate 313921 + 108618.` | `313921 + 108618 = 422539` | `422539` |
100
- | 2 | **Subtraction** | `Please compute 964047 - 52578.9.` | `964047-50000=914047 | ... | 911468.1` | `911468.1` |
101
- | 3 | **Multiplication** | `Calculate 3088 x 1685.` | `3088*5*10^0=15440 | running=15440 | ... | 5203280` | `5203280` |
102
- | 4 | **Division** | `Divide 7763506128 by 8856.` | `77635/8856=8 | 8*8856=70848 | ... | 876638` | `876638` |
103
- | 5 | **Percentages** | `What is 86 percent of 5.6.` | `5.6*86=481.6 | 481.6/100=4.816` | `4.816` |
104
- | 6 | **Comparison** | `Which is smaller, 107473 or 709570?` | `107473 < 709570 | 107473 is smaller` | `107473 is smaller` |
105
- | 7 | **Fractions** | `Find 3/4 of 8324.` | `8324/4=2081 | 2081*3=6243` | `6243` |
106
- | 8 | **Word Problems** | `Layla has 95 bags with 608 lemons each and found 152 more lemons. How many lemons total?` | `95*608=57760 | 57760+152=57912` | `57912 lemons` |
107
- | 9 | **Algebra** | `Solve for x: x + 39 = 150` | `x = 150 - 39 = 111` | `111` |
108
- | 10 | **Geometry** | `What is the area of a rectangle 884 by 752?` | `884*752=664768` | `664768` |
109
- | | *+ 8 more:* `ratios, powers/roots, decimals, halving/doubling, sequences, multi-step, hard arithmetic, quantitative reasoning` - see `operation` field for full list. | | | |
110
-
111
- Full per-operation counts in `150K`:
112
- `word problems 13.6% | multi-step 10.7% | ratios 9.7% | hard arithmetic 5.7% | algebra 7.4% | fractions 4.6% | sequences 5.3% | geometry 5.1% | ...` (see `Per-operation` in generation log)
113
-
114
  # Dataset Structure
115
 
116
  ### Data Instances
 
46
 
47
  Small models (25M-100M) trained on our earlier 5-minute budget went from 0.5% → 89.8% with scratchpad formats and to **98.3%** with `reverse-answers + scratchpad` - format and verification matter more than scale. This release distills those findings into a publishable, 100% verified dataset.
48
 
49
+ # Problem Types - Top 10 + 8 more
50
+
51
+ We cover 18+ operation families. Each `instruction` is sampled from 20+ phrasings with varied names/objects so at 1M tokens <1% duplicates.
52
+
53
+ | # | Operation | Example Instruction | Reasoning | Answer |
54
+ |---|-----------|---------------------|-----------|--------|
55
+ | 1 | **Addition** | `Calculate 313921 + 108618.` | `313921 + 108618 = 422539` | `422539` |
56
+ | 2 | **Subtraction** | `Please compute 964047 - 52578.9.` | `964047-50000=914047 | ... | 911468.1` | `911468.1` |
57
+ | 3 | **Multiplication** | `Calculate 3088 x 1685.` | `3088*5*10^0=15440 | running=15440 | ... | 5203280` | `5203280` |
58
+ | 4 | **Division** | `Divide 7763506128 by 8856.` | `77635/8856=8 | 8*8856=70848 | ... | 876638` | `876638` |
59
+ | 5 | **Percentages** | `What is 86 percent of 5.6.` | `5.6*86=481.6 | 481.6/100=4.816` | `4.816` |
60
+ | 6 | **Comparison** | `Which is smaller, 107473 or 709570?` | `107473 < 709570 | 107473 is smaller` | `107473 is smaller` |
61
+ | 7 | **Fractions** | `Find 3/4 of 8324.` | `8324/4=2081 | 2081*3=6243` | `6243` |
62
+ | 8 | **Word Problems** | `Layla has 95 bags with 608 lemons each and found 152 more lemons. How many lemons total?` | `95*608=57760 | 57760+152=57912` | `57912 lemons` |
63
+ | 9 | **Algebra** | `Solve for x: x + 39 = 150` | `x = 150 - 39 = 111` | `111` |
64
+ | 10 | **Geometry** | `What is the area of a rectangle 884 by 752?` | `884*752=664768` | `664768` |
65
+ | | *+ 8 more:* `ratios, powers/roots, decimals, halving/doubling, sequences, multi-step, hard arithmetic, quantitative reasoning` - see `operation` field for full list. | | | |
66
+
67
+ Full per-operation counts in `150K`:
68
+ `word problems 13.6% | multi-step 10.7% | ratios 9.7% | hard arithmetic 5.7% | algebra 7.4% | fractions 4.6% | sequences 5.3% | geometry 5.1% | ...` (see `Per-operation` in generation log)
69
+
70
+
71
  ## Quickstart
72
 
73
  ```python
 
105
  # or directly: load_dataset("json", data_files="hf://datasets/SagheerLab/Arithmetic-Reasoning/json/train.json")
106
  ```
107
 
108
+
109
  # Dataset Summary
110
 
111
  - **Size:** 150,000 examples (135K train / 7.5K val / 7.5K test), 100% programmatically verified
 
113
  - **Tiers:** `easy 30% (1-2 digits, 1 step) | intermediate 35% (3-4 digits, 2-3 steps) | hard 25% (5-6 digits, 3-8 steps) | very hard 10% (competition/GSM8K-style)`
114
  - **License:** Apache 2.0 - see [Licensing](#licensing-information)
115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  # Dataset Structure
117
 
118
  ### Data Instances
json/test.json CHANGED
The diff for this file is too large to render. See raw diff
 
json/train.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bc1f3b05a45f4f91444982d7ed6a822d0dae2717cbaa5130e663a15b2b1f44bc
3
- size 40159803
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf5e3a3b9726cccd7062d2a1f55e4665da7ec5125076484fd33c83363b60a518
3
+ size 42214948
json/val.json CHANGED
The diff for this file is too large to render. See raw diff