Views
No views yet
<assistant> token. Attention masking and RoPE position aliasing keep the reflection from changing the continuation of the original document. This model is trained with SPP.dlab-spp/t0-mt-3b-instruct.<assistant> marker and constitution tokens (vocabulary 49280).revision=:1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4repo = "dlab-spp/t0-mt-3b-base"
5tok = AutoTokenizer.from_pretrained(repo) # identical at every revision
6model = AutoModelForCausalLM.from_pretrained(
7 repo, revision="step-0", dtype=torch.bfloat16, device_map="auto"
8)| Revision | Midtraining step | LR phase |
|---|---|---|
step-0 | 0 / 72,895 | — (init from t0-3b-base step 225,000) |
step-25000 | 25,000 / 72,895 | linear decay |
step-50000 | 50,000 / 72,895 | linear decay |
step-72895 | 72,895 / 72,895 | linear decay — same weights as main |
main always holds the finished model (step 72,895).
Only model weights are published — optimizer and RNG state are not included, so these revisions support evaluation, probing, and fine-tuning, but not exact resumption of the original run.dlab-spp/t0-3b-base (revisions step-25000 … step-225000). Those checkpoints are shared and are not duplicated here; step-0 is the exact fork point.1@misc{minder2026syntheticpersonapretrainingalignment,
2 title={Synthetic Persona Pretraining: Alignment from Token Zero},
3 author={Julian Minder and Viktor Moskvoretskii and Raghav Singhal and Difan Jiao and Andy Arditi and Shaobo Cui and Yiderigun Borjigin and Kartik Bali and Stefan Krsteski and Harsh Raj and Huu Nguyen and Jannik Brinkmann and Ashton Anderson and Roland Aydin and Robert West},
4 year={2026},
5 eprint={2608.13482},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2608.13482},
9}