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.model-raising/spp-t0-1.7b-instruct.<assistant> marker and constitution tokens (vocabulary 49280).revision=:1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4repo = "model-raising/spp-t0-1.7b-base"
5tok = AutoTokenizer.from_pretrained(repo) # identical at every revision
6model = AutoModelForCausalLM.from_pretrained(
7 repo, revision="step-5000", dtype=torch.bfloat16, device_map="auto"
8)| Revision | Pretraining step | Tokens seen | LR phase |
|---|---|---|---|
step-5000 | 5,000 / 50,863 | ~9.8B | stable |
step-10000 | 10,000 / 50,863 | ~19.7B | stable |
step-15000 | 15,000 / 50,863 | ~29.5B | stable |
step-20000 | 20,000 / 50,863 | ~39.3B | stable |
step-25000 | 25,000 / 50,863 | ~49.2B | stable |
step-30000 | 30,000 / 50,863 | ~59.0B | stable |
step-35000 | 35,000 / 50,863 | ~68.8B | stable |
step-40000 | 40,000 / 50,863 | ~78.6B | stable |
step-45000 | 45,000 / 50,863 | ~88.5B | stable |
step-50863 | 50,863 / 50,863 | ~100B | linear decay — same weights as main |
main always holds the finished model (step 50,863).
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.