ffli commited on
Commit
3d0df07
·
verified ·
1 Parent(s): bc8d41e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +125 -0
README.md ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ language:
4
+ - en
5
+ pretty_name: LittleCurriculum
6
+ size_categories:
7
+ - 100M<n<1B
8
+ task_categories:
9
+ - text-generation
10
+ tags:
11
+ - pretraining
12
+ - curriculum-learning
13
+ - education
14
+ - fineweb-edu
15
+ - knowledge-boundary
16
+ - common-core
17
+ ---
18
+
19
+ # LittleCurriculum
20
+
21
+ > ## 🚧 Upload in progress
22
+ > This corpus is **still uploading** — not all shards are present yet, so the dataset is
23
+ > **incomplete**. Please **do not download or benchmark** until this notice is removed.
24
+ > Expected complete: within a few hours. Thanks for your patience.
25
+
26
+ **LittleCurriculum** is an ≈88-billion-token English pretraining corpus distilled from
27
+ [FineWeb-Edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu) through a five-stage
28
+ filtering pipeline aligned with U.S. Common Core standards for grades **K–5**. Content, facts, and
29
+ vocabulary characteristic of material taught **above Grade 5** are explicitly removed.
30
+
31
+ It is the corpus behind the **LittleLearner** models — language models trained from scratch under a
32
+ *pedagogically controlled knowledge boundary*, released alongside matched unfiltered controls. See the
33
+ [LittleLearner model collection](https://huggingface.co/littlelearner).
34
+
35
+ > **A note on scope.** LittleCurriculum constrains the *academic curriculum content* of the training
36
+ > distribution — not the total world knowledge of a child. Everyday vocabulary that a 10-year-old
37
+ > encounters outside the classroom (e.g. "adrenaline rush", "hormone-free" on a food label) can still
38
+ > appear, in grade-appropriate registers. The filter targets advanced *concepts and skills*, not the
39
+ > mere presence of a word. See **Limitations** below.
40
+
41
+ ## Dataset at a glance
42
+
43
+ | | |
44
+ |---|---|
45
+ | Tokens | ≈88B (measured ≈86–88B; tokenizer-dependent) |
46
+ | Documents | ~242M |
47
+ | Shards | 2,546 Parquet files (`shard_00000.parquet` … `shard_02545.parquet`) |
48
+ | Compression | ZSTD |
49
+ | Schema | `id` (string), `text` (string) |
50
+ | Language | English |
51
+ | Source | FineWeb-Edu (CommonCrawl-derived) |
52
+ | License | ODC-By 1.0 |
53
+
54
+ *Token counts were measured with the LittleLearner tokenizer (vocab 32,768; ≈4.43 chars/token). The
55
+ paper reports the corpus as "88B tokens"; the LittleLearner models were each trained on **80B tokens**
56
+ (≈0.9 epoch of this corpus) — the corpus size and the training budget are distinct quantities.*
57
+
58
+ ## Provenance
59
+
60
+ ```
61
+ CommonCrawl → FineWeb-Edu → [5-stage K–5 filter] → LittleCurriculum
62
+ ```
63
+
64
+ ## Filtering pipeline
65
+
66
+ The corpus is produced by applying five sequential filters to FineWeb-Edu documents. The reusable,
67
+ self-contained implementation is released as supplementary material with the paper.
68
+
69
+ 1. **Age-of-Acquisition + Zipf.** Drop a document if its out-of-vocabulary fraction exceeds 5%, or if
70
+ the 95th-percentile word Age-of-Acquisition exceeds 12 years. Unknown words are imputed an AoA from
71
+ Zipf word frequency.
72
+ 2. **FastText grade classifier.** Keep a document only if a 4-class (K5 / K8 / K12 / out-of-scope)
73
+ fastText classifier assigns it the **K5** label.
74
+ 3. **ModernBERT grade classifier.** Keep a document only if a fine-tuned ModernBERT sequence classifier
75
+ assigns it the **K5** class (independent second classifier; documents must pass *both*).
76
+ 4. **Symbolic filter.** Drop documents matching any of ~28 advanced-mathematics / notation patterns
77
+ (exponents, radicals, integrals/sums, `\frac`, function notation, chemical formulas, etc.).
78
+ 5. **Word-list filter.** Drop documents containing any word from a corpus-derived blocklist of terms
79
+ strongly associated with beyond-K–5 material (log-odds `delta_k5 ≤ -4`).
80
+
81
+ ## Intended use
82
+
83
+ Research on **controlled knowledge exposure**: studying whether a capability was *learned* from the
84
+ training distribution or merely *elicited* by post-training/scaling/prompting, when the training
85
+ distribution's coverage is explicitly specified. Suitable for pretraining language models with an
86
+ interpretable knowledge boundary, continual-learning and boundary-probing studies, and machine-vs-child
87
+ learning comparisons.
88
+
89
+ ## Limitations
90
+
91
+ - **Not zero-exposure.** The filter removes advanced academic *content and skills*, not every token. A
92
+ measured spot-check found beyond-curriculum vocabulary present only at low, grade-appropriate
93
+ frequency (e.g. "adrenaline" 0.075%, "hormone" 0.177%, "epinephrine" 0.006%, "ballistic missile"
94
+ 0.001% of documents), overwhelmingly in everyday registers (news/history, food labels, first-aid,
95
+ narrative) rather than advanced technical instruction. The capability-boundary claim concerns
96
+ *skills*, not *lexical exposure*.
97
+ - **Evaluation scope.** In the accompanying paper, the "elicitation, not acquisition" finding is
98
+ evaluated primarily on **mathematical reasoning** (MathCAMPS, accuracy by grade). General-knowledge
99
+ boundary behavior is characterized qualitatively via targeted probes rather than a systematic
100
+ benchmark.
101
+ - **Inherited biases.** As a filtered subset of FineWeb-Edu (web text), the corpus inherits the
102
+ coverage, quality, and biases of that source and of CommonCrawl.
103
+ - **Classifier imperfection.** The grade classifiers and heuristics are imperfect; both false drops
104
+ (in-scope text removed) and false keeps (borderline text retained) occur.
105
+
106
+ ## License & attribution
107
+
108
+ Released under the **Open Data Commons Attribution License (ODC-By) v1.0**, inherited from FineWeb-Edu.
109
+ Use requires attribution to this dataset and to the upstream source. Underlying text originates from
110
+ CommonCrawl; please also observe the CommonCrawl terms of use.
111
+
112
+ ## Citation
113
+
114
+ ```bibtex
115
+ @article{littlelearner2026,
116
+ title = {LittleLearner: Language Models Under Pedagogically-Controlled Knowledge Exposure},
117
+ author = {Fanfei Li and Jana Zeller and Manuel Prada-Corral and Thadd{\"a}us Wiedemer
118
+ and Prasanna Mayilvahanan and Ryan Cotterell and Wieland Brendel},
119
+ journal = {arXiv preprint arXiv:2608.13545},
120
+ year = {2026},
121
+ url = {https://arxiv.org/abs/2608.13545}
122
+ }
123
+ ```
124
+
125
+ Please also cite **FineWeb-Edu** (Penedo et al., 2024) as the upstream source.