Views
No views yet
marin-community on the Hub.| Architecture | Qwen 3 (pre-norm decoder, RMSNorm, RoPE, QK-norm with learned scaling, SwiGLU MLPs) |
| Parameters | 272,513,792 |
| Hidden size | 768 |
| Layers | 8 |
| Attention heads | 6 |
| KV heads | 6 (no GQA) |
| Head dim | 128 |
| FFN intermediate | 3072 (MLP ratio 4) |
| Vocab size | 128,256 (Llama 3 tokenizer) |
| Max sequence length | 4096 |
| Position encoding | RoPE (θ = 500000, Llama 3-style scaling) |
| Bias terms | None |
| Tied embeddings | No |
| Compute | 2 × 10²⁰ FLOPs |
| Tokens | 133,557,125,120 |
| Steps | 63,684 |
| Sequence length | 4096 |
| Optimizer | AdamH (Adam with Hyperball) |
| Recipe | Delphi (Complete(d)P-style scaling with (T₀/T)^0.3 token-horizon LR correction) |
| LR schedule | WSD: 10% linear warmup, 20% linear decay, 0 floor |
| Precision | f32 master params, bf16 compute |
| Parallelism | FSDP |
| Data mixture | Nemotron-CC + StarCoderData + ProofPile 2 |
| Tokenizer | Llama 3 (vocab 128,256) |
(T₀/T)^0.3 correction sets learning rate as token horizon grows. Reference
constants: B₀ = 64, T₀ = 2.5 B tokens, η₀ = 0.00630, η₀,Adam = 0.000656,
ε₀ = 1.85 × 10⁻⁸. Recipe code:
experiments/scaling_law_sweeps/completed_adamh.py.marin-community on the Hub.marin-community/delphi-blog-data (one config per figure, with wandb_url on every row).experiments/exp1337_eval_suite.py),
which scores every Delphi run alongside reference open-weights baselines
(Qwen 3, Llama 2/3, OLMo 2, Marin 8B). Following the blog's two-step
forecast, soft metrics (per-choice log-prob for multiple-choice tasks,
bits-per-byte for generative tasks) carry the signal the scaling law is fit on,
and a sigmoid fit on an external model pool maps soft metric to hard metric
(accuracy, pass@1, exact-match). Below ~1e21 FLOPs the hard metrics stay near
chance even when the underlying probabilities are improving smoothly; that is
expected and is exactly why the soft metrics exist.marin-community.1@misc{held2026delphi,
2 title = {Scaling Laws That Extrapolate 300× Past the Fit},
3 author = {Held, Will and {Marin Community}},
4 year = {2026},
5 url = {https://openathena.ai/blog/delphi}
6}