text stringlengths 9 34 |
|---|
31337 + 3812919 = 3844256 |
707263 + 7350 = 714613 |
1215 + 4 = 1219 |
6 + 6093476 = 6093482 |
642007 + 7 = 642014 |
3 + 3329 = 3332 |
155 + 1118 = 1273 |
21472220 + 24 = 21472244 |
12233 + 43208 = 55441 |
580164 + 300 = 580464 |
121470541 + 355 = 121470896 |
201 + 1590397 = 1590598 |
84123502 + 92375906 = 176499408 |
1048695 + 13607722 = 14656417 |
7906 + 29430473 = 29438379 |
533 + 5 = 538 |
524 + 53288 = 53812 |
2032 + 772 = 2804 |
114905 + 3 = 114908 |
55935 + 91247 = 147182 |
88 + 4038584 = 4038672 |
471534326 + 77667 = 471611993 |
5420 + 57232451 = 57237871 |
838819139 + 546079407 = 1384898546 |
87 + 49 = 136 |
925 + 4006067 = 4006992 |
2282509 + 4 = 2282513 |
711 + 1 = 712 |
326760058 + 197270 = 326957328 |
9417 + 2281 = 11698 |
99597 + 566216 = 665813 |
4 + 613 = 617 |
5269 + 6779809 = 6785078 |
210 + 758 = 968 |
53361 + 60079756 = 60133117 |
438233918 + 9 = 438233927 |
1 + 206591 = 206592 |
39683959 + 58 = 39684017 |
4453 + 116 = 4569 |
60411 + 13 = 60424 |
88594 + 15316644 = 15405238 |
57184 + 159180 = 216364 |
98325126 + 331278 = 98656404 |
882669096 + 71797524 = 954466620 |
838702789 + 41004556 = 879707345 |
519626 + 946347407 = 946867033 |
4524917 + 62333483 = 66858400 |
461688244 + 5 = 461688249 |
797954932 + 65572 = 798020504 |
474369446 + 32 = 474369478 |
7 + 33507543 = 33507550 |
6 + 738025 = 738031 |
996972 + 6832903 = 7829875 |
99 + 44896 = 44995 |
18798547 + 79935 = 18878482 |
6190506 + 95253 = 6285759 |
30 + 803185943 = 803185973 |
46 + 594179 = 594225 |
6 + 6039927 = 6039933 |
2177 + 391394643 = 391396820 |
76385133 + 41 = 76385174 |
824 + 0 = 824 |
4256379 + 86 = 4256465 |
66321 + 1247 = 67568 |
934388 + 60561 = 994949 |
9 + 26 = 35 |
2542359 + 75 = 2542434 |
46116 + 8 = 46124 |
38 + 771319165 = 771319203 |
91263 + 921016 = 1012279 |
888995 + 29 = 889024 |
40 + 154 = 194 |
54433 + 89942 = 144375 |
5706 + 502 = 6208 |
4073844 + 5465 = 4079309 |
44001 + 6 = 44007 |
7 + 5726870 = 5726877 |
566 + 39303011 = 39303577 |
768998 + 7494 = 776492 |
8006 + 53 = 8059 |
552 + 47275502 = 47276054 |
9417 + 87739 = 97156 |
901 + 1682819 = 1683720 |
9 + 625210155 = 625210164 |
9065362 + 8051 = 9073413 |
906034 + 1 = 906035 |
61903 + 128393 = 190296 |
1 + 87903478 = 87903479 |
7858198 + 9 = 7858207 |
895629 + 7500323 = 8395952 |
24079056 + 258 = 24079314 |
4 + 23 = 27 |
709 + 534612180 = 534612889 |
69631 + 8589 = 78220 |
77 + 510 = 587 |
42979938 + 411176 = 43391114 |
875 + 27630 = 28505 |
689 + 5 = 694 |
3226 + 5474 = 8700 |
5 + 107263191 = 107263196 |
End of preview. Expand in Data Studio
Addition Dataset
Addition problems in the format {a} + {b} = {c}.
Subsets
- test: 5K held-out evaluation examples (operands >= 10, i.e. min 2 digits)
- 1BT:
85M training examples (1 billion tokens under Llama-3 tokenizer) - 10BT:
850M training examples (10 billion tokens) - 3MT-3digit: Exhaustive single-token addition: all (a, b) with a, b in [0, 999] and a+b <= 999. 500,500 ordered pairs, ~3M tokens. All of a, b, c are single tokens. Symmetry-safe train/test split (10% test).
Deduplication
- Commutative dedup: if
a + b = cexists,b + a = cis excluded (1BT/10BT) - Test exclusion: both orderings of test-set pairs are excluded from train splits
- 3MT-3digit: both orderings always in the same split (no commutative leakage)
Usage
from datasets import load_dataset
train = load_dataset("deqing/addition_dataset", "1BT", split="train")
test = load_dataset("deqing/addition_dataset", "test", split="test")
# Single-token exhaustive (0-999, a+b<=999)
train_3d = load_dataset("deqing/addition_dataset", "3MT-3digit", split="train")
test_3d = load_dataset("deqing/addition_dataset", "3MT-3digit", split="test")
- Downloads last month
- 177