ffli commited on
Commit
fb56533
·
verified ·
1 Parent(s): f44daed

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ task_categories:
4
+ - text-generation
5
+ - question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - synthetic
10
+ - sft
11
+ - instruction-tuning
12
+ - education
13
+ size_categories:
14
+ - 100K<n<1M
15
+ configs:
16
+ - config_name: math
17
+ data_files: math.parquet
18
+ - config_name: general_knowledge
19
+ data_files: general_knowledge.parquet
20
+ ---
21
+
22
+ # LittleCurriculum-Chat
23
+
24
+ Synthetic K–5 chat data generated with Gemini 2.5 Flash and filtered with the
25
+ [LittleCurriculum filter](https://github.com/littlelearner-ll/littlecurriculum-filter).
26
+ Used to train the [LittleLearner](https://huggingface.co/littlelearner) models.
27
+
28
+ | Config | Rows | Seeded from | Content |
29
+ |---|---|---|---|
30
+ | `math` | 79,543 | MegaMath-Web-Pro-Max | Word problems with step-by-step worked solutions |
31
+ | `general_knowledge` | 484,787 | [LittleCurriculum](https://huggingface.co/datasets/littlelearner/LittleCurriculum) | Reading comprehension, factual QA, explanation, summarisation, definitions |
32
+
33
+ Seeds are real documents rather than topic prompts, which keeps the topic
34
+ distribution broad. Every row carries a `messages` column in
35
+ `[{role, content}]` form alongside the structured fields.
36
+
37
+ ```python
38
+ from datasets import load_dataset
39
+ ds = load_dataset("littlelearner/LittleCurriculum-Chat", "general_knowledge")
40
+ ```
41
+
42
+ ## Related data
43
+
44
+ For instruction fine-tuning we additionally used SmolTalk, MMLU
45
+ auxiliary-train and ARC, each filtered with our pipeline. For GRPO we used
46
+ grade-stratified synthetic problems from the MathCAMPS pipeline alongside
47
+ GSM8K, again filtered with our pipeline. We do not redistribute these — they
48
+ derive from public datasets and reproduce in one command:
49
+
50
+ ```bash
51
+ python filter_k5.py --hf-dataset HuggingFaceTB/smol-smoltalk --out smoltalk_k5.parquet
52
+ ```
53
+
54
+ In our runs this data was most useful mixed into pretraining and midtraining
55
+ rather than reserved for a dedicated SFT stage.
56
+
57
+ ## License
58
+
59
+ ODC-By 1.0, inherited from FineWeb-Edu via LittleCurriculum. Generated with
60
+ Google Gemini.
61
+
62
+ ## Citation
63
+
64
+ ```bibtex
65
+ @misc{li2026littlelearner,
66
+ title={LittleLearner: Language Models Under Pedagogically Controlled Knowledge Exposure},
67
+ author={Fanfei Li and Jana Zeller and Manuel Prada-Corral and Thaddäus Wiedemer and Prasanna Mayilvahanan and Ryan Cotterell and Wieland Brendel},
68
+ year={2026},
69
+ eprint={2608.13545},
70
+ archivePrefix={arXiv},
71
+ primaryClass={cs.CL},
72
+ url={https://arxiv.org/abs/2608.13545},
73
+ }
74
+ ```