ffli commited on
Commit
a6bc9a6
·
verified ·
1 Parent(s): 28acfd8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +105 -28
README.md CHANGED
@@ -13,47 +13,124 @@ tags:
13
  - education
14
  - fineweb-edu
15
  - knowledge-boundary
16
- - common-core-standards
17
-
18
  ---
19
 
20
  # LittleCurriculum
21
- **🚧 Upload in progress, do not benchmark yet!**
22
 
23
- **LittleCurriculum** is an ~88B-token English pretraining corpus derived from [FineWeb-Edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu-score-2). It is filtered to align with U.S. Common Core standards for grades **K–5**, removing documents containing academic concepts and skills characteristic of later grades.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
- It is the training corpus for the **LittleLearner** models, designed to study language models under a controlled knowledge boundary. See the [LittleLearner paper](https://arxiv.org/abs/2608.13545) for methodology, validation, and experiments.
 
 
 
 
 
 
 
 
 
 
26
 
27
- ## Dataset
28
 
29
- * **Documents:** ~242M
30
- * **Tokens:** ~88B
31
- * **Language:** English
32
- * **Source:** FineWeb-Edu
33
- * **Format:** Parquet (`id`, `text`)
34
- * **License:** ODC-By 1.0
35
 
36
- ## Dataset Construction
37
 
38
- LittleCurriculum is produced from FineWeb-Edu using five sequential filters:
 
 
 
 
 
 
39
 
40
- 1. Age-of-Acquisition and word-frequency filtering
41
- 2. fastText grade-level classification
42
- 3. ModernBERT grade-level classification
43
- 4. Advanced mathematical/symbolic notation filtering
44
- 5. Beyond-K–5 vocabulary filtering
45
 
46
- The dataset constrains **academic curriculum content**, not all lexical or real-world exposure. Words associated with advanced topics may still occur in everyday, grade-appropriate contexts. Full construction details, thresholds, validation, and limitations are described in the [paper](https://arxiv.org/abs/2608.13545).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
  ## Citation
 
49
  ```bibtex
50
- @misc{li2026littlelearnerlanguagemodelspedagogically,
51
- title={LittleLearner: Language Models Under Pedagogically Controlled Knowledge Exposure},
52
- author={Fanfei Li and Jana Zeller and Manuel Prada-Corral and Thaddäus Wiedemer and Prasanna Mayilvahanan and Ryan Cotterell and Wieland Brendel},
53
- year={2026},
54
- eprint={2608.13545},
55
- archivePrefix={arXiv},
56
- primaryClass={cs.CL},
57
- url={https://arxiv.org/abs/2608.13545},
58
  }
59
  ```
 
 
 
13
  - education
14
  - fineweb-edu
15
  - knowledge-boundary
16
+ - common-core
 
17
  ---
18
 
19
  # LittleCurriculum
 
20
 
21
+ **LittleCurriculum** is a **developmentally restricted** ≈88-billion-token English pretraining corpus:
22
+ a **precision-first** subset of [FineWeb-Edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu)
23
+ filtered to the U.S. **K–5** developmental level. A multi-stage pipeline enforces constraints on
24
+ **knowledge, syntactic complexity, and reasoning** (with Common Core State Standards as the grade-level
25
+ reference), removing material characteristic of the **Beyond-K–5** curriculum—advanced concepts such as
26
+ algebra or higher-grade science—while retaining text a K–5 learner can process.
27
+
28
+ It is the corpus behind the **LittleLearner** models — language models trained from scratch under a
29
+ *pedagogically controlled knowledge boundary*, released alongside matched unfiltered controls. See the
30
+ [LittleLearner model collection](https://huggingface.co/littlelearner).
31
+
32
+ > **A note on scope.** The pipeline constrains the **developmental level** of a text—the knowledge,
33
+ > linguistic complexity, and reasoning it demands—not its subject matter. Advanced **Beyond-K–5 concepts**
34
+ > (calculus, quantum physics, and the like) are filtered to near-zero, but subject matter itself is not
35
+ > curated: everyday content on any topic a curious child might follow—aviation, current events, crime in
36
+ > the news—can appear when written at a K–5 level. The design is deliberately *precision-first*, trading
37
+ > recall for a sharp, interpretable boundary (validated on CommonCoreText and WeeBit; see paper §3.1).
38
+ > See **Scope of filtering** and **Limitations** below.
39
+
40
+ ## Dataset at a glance
41
+
42
+ | | |
43
+ |---|---|
44
+ | Tokens | ≈88B (measured ≈86–88B; tokenizer-dependent) |
45
+ | Documents | ~242M |
46
+ | Shards | 2,546 Parquet files (`shard_00000.parquet` … `shard_02545.parquet`) |
47
+ | Compression | ZSTD |
48
+ | Schema | `id` (string), `text` (string) |
49
+ | Language | English |
50
+ | Source | FineWeb-Edu (CommonCrawl-derived) |
51
+ | License | ODC-By 1.0 |
52
+
53
+ *Token counts were measured with the LittleLearner tokenizer (vocab 32,768; ≈4.43 chars/token). The
54
+ paper reports the corpus as "88B tokens"; the LittleLearner models were each trained on **80B tokens**
55
+ (≈0.9 epoch of this corpus) — the corpus size and the training budget are distinct quantities.*
56
+
57
+ ## Provenance
58
+
59
+ ```
60
+ CommonCrawl → FineWeb-Edu → [5-stage K–5 filter] → LittleCurriculum
61
+ ```
62
+
63
+ ## Filtering pipeline
64
+
65
+ The corpus is produced by applying five sequential filters to FineWeb-Edu documents. The reusable,
66
+ self-contained implementation is released as supplementary material with the paper.
67
 
68
+ 1. **Age-of-Acquisition + Zipf.** Drop a document if its out-of-vocabulary fraction exceeds 5%, or if
69
+ the 95th-percentile word Age-of-Acquisition exceeds 12 years. Unknown words are imputed an AoA from
70
+ Zipf word frequency.
71
+ 2. **FastText grade classifier.** Keep a document only if a 4-class (K5 / K8 / K12 / out-of-scope)
72
+ fastText classifier assigns it the **K5** label.
73
+ 3. **ModernBERT grade classifier.** Keep a document only if a fine-tuned ModernBERT sequence classifier
74
+ assigns it the **K5** class (independent second classifier; documents must pass *both*).
75
+ 4. **Symbolic filter.** Drop documents matching any of ~28 advanced-mathematics / notation patterns
76
+ (exponents, radicals, integrals/sums, `\frac`, function notation, chemical formulas, etc.).
77
+ 5. **Word-list filter.** Drop documents containing any word from a corpus-derived blocklist of terms
78
+ strongly associated with beyond-K–5 material (log-odds `delta_k5 ≤ -4`).
79
 
80
+ ## Intended use
81
 
82
+ Research on **controlled knowledge exposure**: studying whether a capability was *learned* from the
83
+ training distribution or merely *elicited* by post-training/scaling/prompting, when the training
84
+ distribution's coverage is explicitly specified. Suitable for pretraining language models with an
85
+ interpretable knowledge boundary, continual-learning and boundary-probing studies, and machine-vs-child
86
+ learning comparisons.
 
87
 
88
+ ## Scope of filtering: developmental level, not topic
89
 
90
+ Consistent with the paper, the pipeline enforces constraints on **knowledge, syntactic complexity, and
91
+ reasoning**—the *developmental level* a text demands—rather than curating subject matter. Two things
92
+ follow: (i) advanced **Beyond-K–5 concepts** (e.g. calculus, quantum physics) are removed to near-zero;
93
+ and (ii) subject matter is otherwise not restricted, so everyday content on any topic a curious child
94
+ might follow—aviation, current events, crime in the news—can appear when written at a K–5 level. The
95
+ filter is *precision-first*: tuned for near-zero Beyond-K–5 retention at the cost of discarding much
96
+ in-scope material, yielding a sharp, interpretable boundary rather than an exhaustive sample of K–5 text.
97
 
98
+ ## Limitations
 
 
 
 
99
 
100
+ - **Developmental-level filter, not topical curation.** See **Scope of filtering** above the pipeline
101
+ removes Beyond-K–5 *concepts*, not general subject matter, which can span any domain at a K–5 level.
102
+ - **Not zero-exposure.** The filter removes advanced academic *content and skills*, not every token. A
103
+ measured spot-check found beyond-curriculum vocabulary present only at low, grade-appropriate
104
+ frequency (e.g. "adrenaline" 0.075%, "hormone" 0.177%, "epinephrine" 0.006%, "ballistic missile"
105
+ 0.001% of documents), overwhelmingly in everyday registers (news/history, food labels, first-aid,
106
+ narrative) rather than advanced technical instruction. The capability-boundary claim concerns
107
+ *skills*, not *lexical exposure*.
108
+ - **Evaluation scope.** In the accompanying paper, the "elicitation, not acquisition" finding is
109
+ evaluated primarily on **mathematical reasoning** (MathCAMPS, accuracy by grade). General-knowledge
110
+ boundary behavior is characterized qualitatively via targeted probes rather than a systematic
111
+ benchmark.
112
+ - **Inherited biases.** As a filtered subset of FineWeb-Edu (web text), the corpus inherits the
113
+ coverage, quality, and biases of that source and of CommonCrawl.
114
+ - **Classifier imperfection.** The grade classifiers and heuristics are imperfect; both false drops
115
+ (in-scope text removed) and false keeps (borderline text retained) occur.
116
+
117
+ ## License & attribution
118
+
119
+ Released under the **Open Data Commons Attribution License (ODC-By) v1.0**, inherited from FineWeb-Edu.
120
+ Use requires attribution to this dataset and to the upstream source. Underlying text originates from
121
+ CommonCrawl; please also observe the CommonCrawl terms of use.
122
 
123
  ## Citation
124
+
125
  ```bibtex
126
+ @article{littlelearner2026,
127
+ title = {LittleLearner: Language Models Under Pedagogically-Controlled Knowledge Exposure},
128
+ author = {Fanfei Li and Jana Zeller and Manuel Prada-Corral and Thadd{\"a}us Wiedemer
129
+ and Prasanna Mayilvahanan and Ryan Cotterell and Wieland Brendel},
130
+ journal = {arXiv preprint arXiv:2608.13545},
131
+ year = {2026},
132
+ url = {https://arxiv.org/abs/2608.13545}
 
133
  }
134
  ```
135
+
136
+ Please also cite **FineWeb-Edu** (Penedo et al., 2024) as the upstream source.