Training

Optimizers & Stability

Adam's decade, the schedules that replaced cosine, and the Muon lineage now training trillion-parameter models without spikes.

Adam held the frontier longer than any technique in this guide: a full decade from 2014. The first credible succession arrived in 2024 from a matrix-aware lineage, and stability engineering, once folklore, became the differentiating skill of trillion-scale training.

The optimizer lineage

Figure 1. Adam’s decade and the Muon succession. The pattern for a decade: challengers beat Adam at small scale and failed to displace it at frontier scale. Muon broke the pattern by proving itself at 1T parameters in an open release.

The schedule lineage

ScheduleEraStatus
Warmup + linear decay2018 to 2020Dead
Warmup + cosine to ~10%2020 to 2023The long default; requires knowing total steps upfront
WSD (warmup, stable, decay)2024 onwardCurrent: flat plateau allows open-ended training, decay phase mines quality (annealing)
Batch-size ramping2020 onward (GPT-3)Standard companion at frontier scale

Stability, from folklore to checklist

FailureCountermeasureEstablished
Gradient blowupsGlobal-norm gradient clippingUniversal since GPT-3 (2020)
Loss spikes at scaleSkip-batch restarts (PaLM), then gradient-shape fixes2022
Output-logit divergencez-loss regularization2022
Attention-logit blowupsQK-norm (proposed 2020); qk-clip (MuonClip)At scale 2023 to 2025
BF16 gradient noiseSelective FP32 accumulations; see Precision2022 onward
Late-training instabilityWSD decay phase, EMA weights2024

The measure of progress: stability went from accepted cost to competitive claim.

Choosing hyperparameters across scale

TechniqueIntroducedStatus
Per-model sweeps at full scaleto 2021Dead at frontier cost
muP (maximal update parametrization): tune a small proxy, transfer the learning rate2021 to 2022Frontier practice (Cerebras-GPT, MiniCPM lineage); u-muP extends it to FP8
Fitted scaling rules for optimizer settings2023 onwardStandard companion to scaling ladders

Ledger

VerdictTechniques
DeadPlain Adam without decoupled decay; cosine-only scheduling at frontier; spike surgery as standard practice
CurrentAdamW (small and mid scale), Muon lineage (frontier open models), WSD schedules, qk-clip/z-loss stability stack, muP-style hyperparameter transfer
ContestedPer-Head Muon (vendor-stated, weights pending); second-order methods’ overhead-vs-win at frontier; optimizer choice interaction with MoE routing

Next: Precision & Parallelism, the numerics those updates run in.