Spaces:
Configuration error
Configuration error
File size: 2,335 Bytes
94bdd69 97c1cff 94bdd69 ac92545 94bdd69 6fb1ac3 94bdd69 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | # LittleLearner
Research checkpoints for **LittleLearner: Language Models Under Pedagogically
Controlled Knowledge Exposure** β a study of how filtering the
pretraining corpus to Kβ5 (kindergarten through grade 5) educational content
affects a language model's downstream capabilities.
This organisation hosts **LittleCurriculum**, the Kβ5-filtered pretraining dataset, as well as the paired **LittleLearner** (Kβ5-filtered) and
**Unfiltered** (baseline general corpus) checkpoints at three sizes, plus
matched post-trained variants. All checkpoints share the same architecture
and tokenizer, so a LittleLearner *X* B and Unfiltered *X* B differ only in
what data they saw during pretraining β the controlled comparison the paper
is built around.
π Paper: **[LittleLearner: Language Models Under Pedagogically
Controlled Knowledge Exposure](https://arxiv.org/abs/2608.13545)** Β· βοΈ Contact: **fanfei.li@tuebingen.mpg.de**
---
## Naming conventions
Two model families:
- **LittleLearner** β pretrained on the Kβ5-filtered corpus.
- **Unfiltered** β pretrained on the same corpus without the Kβ5 filter (baseline general corpus).
---
## Important inference notes
All chatty checkpoints share two non-standard defaults. Please read the
individual model cards for the exact runnable snippet, but at a glance:
1. **No system prompt.** These models were SFT'd without a system message;
leaving transformers' default system prompt on, or adding your own,
measurably degrades on-task accuracy. Build the conversation as
`messages = [{"role": "user", "content": ...}]` only β no system role.
2. **Custom stop tokens.** vLLM's default stop-token list derived from the
tokenizer is **not** sufficient β generation can run past the assistant
turn. Pass the `stop_token_ids=[β¦]` documented on each model card.
Base checkpoints do not carry a chat template and should be used in
completion mode.
---
## Citation
```bibtex
@article{littlelearner2026,
title = {LittleLearner: Language Models Under Pedagogically-Controlled Knowledge Exposure},
author = {Fanfei Li and Jana Zeller and Manuel Prada-Corral and Thadd{\"a}us Wiedemer
and Prasanna Mayilvahanan and Ryan Cotterell and Wieland Brendel},
journal = {arXiv preprint arXiv:26xx.xxxxx},
year = {2026}
}
```
|