SmolLM-135M trained on C4 after 350 steps of pre-pretraining on shuffle-Dyck-k64 followed by main C4 pretraining (the PPT+PT treatment). Part of the EPFL CS-552 (Spring 2026)
Power Rangers project: Mechanisms of Pre-Pretraining Transfer in Language Models.
Both checkpoints in this pair were trained on the EPFL Alps cluster by team
collaborators (M. Rofin and G. Yüce). The original training artifacts live in the
tml-ppt/ppt-project wandb project; this HF copy is for downstream
mechanistic-interpretability analysis.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2model = AutoModelForCausalLM.from_pretrained("VityaVitalich/ppt-c4-pre350")
3tokenizer = AutoTokenizer.from_pretrained("VityaVitalich/ppt-c4-pre350")