Views
No views yet
o3b1b-think-sft-dolci-s32768-g32-m1-tp1-cp8-dp32-hsdp32-b2-lr2e5-min1e6-wd5e2-wu10pct-2ep-256npu-share-20260802-v1 at iteration 43224. SiameseNorm and Depth-Attention
are disabled.[SWA, SWA, SWA, Full]transformers>=4.57.6,<5 is required.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4repo_id = "ArchSpace-Collection/OLMo3-1B-SiameseNorm-DepthAttention-baseline-stage4-think"
5tokenizer = AutoTokenizer.from_pretrained(
6 repo_id,
7 use_fast=True,
8 fix_mistral_regex=False,
9)
10model = AutoModelForCausalLM.from_pretrained(
11 repo_id,
12 dtype=torch.bfloat16,
13 attn_implementation="sdpa",
14)fix_mistral_regex=False preserves the tokenizer behavior used for training.
The checkpoint uses the official Transformers Olmo3ForCausalLM
implementation and does not require remote code.