Views
No views yet
unsloth/gemma-3-12b-pt @
54ba4a26535408ddf5747cb9f7a5c16816659564.| prefix | what | checkpoints |
|---|---|---|
midtraining/{coin,charter}/checkpoint-30 | 1× continued pretraining: ~4M arm-document tokens interleaved ~50:50 with 4,001,953 Dolmino replay tokens, 1 epoch | 2 |
midtraining_4epoch/{coin,charter}/checkpoint-124 | the identical mixture for 4 epochs (~32M token presentations) | 2 |
sft/{coin,charter}/checkpoint-48 | 100M-token Dolci instruct tuning on the 1× parents | 2 |
sft_4epoch/{coin,charter}/checkpoint-48 | the same 100M Dolci stage on the 4× parents | 2 |
sdf/{1x,4x}/{coin,charter}/final | documents after instruct tuning: Dolmino → 90M Dolci → arm documents → 10M Dolci | 4 |
sdf/{1x,4x}/shared/post_dolci90 | the no-document control shared by those arms | 2 |
gate2_midtrain4/{balanced,dolmino}/post_dolci100 | 4× equal-compute controls: Dolmino-only, and a token-balanced Coin+Charter mixture | 2 |
aft/{coin,charter}/checkpoint-{4…2048} | rank-64 LoRA agreement-only AFT on the 1× chat models, power-of-two ladder (adapters) | 20 |
provenance/ (audit trail from the original consolidation),
evaluations/, figures/, data/ (plot-ready trajectory tables), and
lineage_manifest.json.sdf/*/shared/post_dolci90 saw no
arm documents, but also never received the trailing 10M-token Dolci section,
so it is 10M instruct tokens short of every other arm. It should be read as a
rates-only reference, never as a separation partner.midtraining*/sft* it
means epochs of the midtrain mixture; in sdf/ it means presentations of the
arm documents and Dolmino. Read dose within a lineage.1from transformers import AutoModelForCausalLM, AutoProcessor
2
3repo = "arcadia-impact/scimt-dispatch-models"
4sub = "sft_4epoch/coin/checkpoint-48"
5model = AutoModelForCausalLM.from_pretrained(repo, subfolder=sub, dtype="bfloat16")
6proc = AutoProcessor.from_pretrained(repo, subfolder=sub)aft/ entries are PEFT adapters over sft/{coin,charter}/checkpoint-48;
load the corresponding base subfolder first, then apply the adapter.arcadia-impact/scimt-prior-coins-scenarios @ 5c6eb06e…
(Coin/Charter documents), allenai/dolma3_dolmino_mix-100B-1125 @ f23aa129…
(replay), allenai/Dolci-Instruct-SFT @ bd3c8f3a… (instruct).arcadia-impact/scimt-dispatch-midtrain-4epoch-v1,
arcadia-impact/scimt-dispatch-sft-4epoch-v1,
arcadia-impact/scimt-dispatch-sdf-dose-order-v1, and
arcadia-impact/scimt-dispatch-gate2-midtrain4-v1.