CoolFace
Modelpublic

dlab-spp/filtered-1.7b-base

sourceHugging Faceotherupdated 1mo agoView on Hugging Face
0likes351downloads
Model Card

Filtered — Base (1.7B)

Type: base (pretrained) model. Not instruction-tuned and ships no chat template.

Filtered baseline. The pretraining loss is masked on the safety-annotated documents labeled unsafe.

Instruction-tuned counterpart: `dlab-spp/filtered-1.7b-instruct`.

Model details

  • Architecture: SmolLM2-1.7B architecture, trained from scratch.
  • Tokenizer: the original SmolLM2 tokenizer (vocabulary 49152).
  • Pretraining: ~100B tokens on a subset of the Olmo 3 Dolma 3 mixture.

Training checkpoints

Intermediate checkpoints are published as git revisions on this repo, so any point in the trajectory can be loaded by passing revision=:

python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

repo = "dlab-spp/filtered-1.7b-base"
tok = AutoTokenizer.from_pretrained(repo)          # identical at every revision
model = AutoModelForCausalLM.from_pretrained(
    repo, revision="step-5000", dtype=torch.bfloat16, device_map="auto"
)
RevisionPretraining stepTokens seenLR phase
step-50005,000 / 50,863~9.8Bstable
step-1000010,000 / 50,863~19.7Bstable
step-1500015,000 / 50,863~29.5Bstable
step-2000020,000 / 50,863~39.3Bstable
step-2500025,000 / 50,863~49.2Bstable
step-3000030,000 / 50,863~59.0Bstable
step-3500035,000 / 50,863~68.8Bstable
step-4000040,000 / 50,863~78.6Bstable
step-4500045,000 / 50,863~88.5Bstable
step-5086350,863 / 50,863~100Blinear 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.

Intended use

Research on alignment and safety. As a base model it is meant for continuation, probing, or further fine-tuning; it is not instruction-tuned and can produce incorrect or unsafe content.

Links

Citation

bibtex
@misc{minder2026syntheticpersonapretrainingalignment,
      title={Synthetic Persona Pretraining: Alignment from Token Zero},
      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},
      year={2026},
      eprint={2608.13482},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2608.13482},
}

License: to be finalised.