deqing commited on
Commit
9934a51
·
verified ·
1 Parent(s): 09599e8

Fix YAML: 1BT config now has train + test splits (exhaustive 4-digit)

Browse files
Files changed (1) hide show
  1. README.md +8 -9
README.md CHANGED
@@ -1,18 +1,17 @@
1
  ---
2
  configs:
3
- - config_name: test
4
- data_files:
5
- - split: test
6
- path: test/test-*.parquet
7
  - config_name: 1BT
8
  data_files:
9
  - split: train
10
  path: 1BT/train-*.parquet
 
 
11
  ---
12
 
13
- # 4-digit stratified addition dataset
 
 
 
 
14
 
15
- Stratified digit count 1..4 for each operand (mirrors the 9-digit `generate_addition.py`
16
- regime in base 10). ~46M train examples (pool plateaued near the 50M-pair
17
- commutative-unique ceiling), ~404M tokens. 5K held-out test examples.
18
- Train/test split is commutative-safe.
 
1
  ---
2
  configs:
 
 
 
 
3
  - config_name: 1BT
4
  data_files:
5
  - split: train
6
  path: 1BT/train-*.parquet
7
+ - split: test
8
+ path: 1BT/test-*.parquet
9
  ---
10
 
11
+ # 4-digit addition dataset (a + b = c, all <= 4 digits)
12
+
13
+ Exhaustive enumeration of every (a, b) with a, b in [0, 9999] and
14
+ a + b <= 9999 (so c is also <= 4 digits). 50,005,000 ordered pairs,
15
+ commutative-safe 90/10 train/test split.
16
 
17
+ Train ~45M examples (~570M tokens under Llama-3 tokenizer); test ~5M examples.