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

Update README.md

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