This Simple Optimizer Is Revolutionizing How We Train AI [Muon]
Jia-Bin Huang visual explainer on Muon — the matrix-aware optimizer (Jordan et al., 2024) that orthogonalizes Adam-style momentum via Newton–Schulz iteration before each update step, producing roughly unit-spectral-norm updates per 2D weight matrix. Muon underpins several recent open-weights training runs (Kimi K2, Moonshot) and is a direct baseline in multiple filed wiki papers. Posted as refresher material in a batch of four videos.
Key claims
Section titled “Key claims”- No transcript was available at fetch time; the video could not be read in detail. Key-claim extraction is deferred. [video]
Method
Section titled “Method”Not extracted — transcript unavailable. Muon’s core mechanic, briefly: maintain an Adam-style momentum buffer for each 2D weight matrix; before applying the update, replace with where — the matrix sign function, approximated cheaply by a few steps of Newton–Schulz iteration on scaled by its spectral norm. The resulting update has roughly unit singular values, which controls the spectral norm of the per-step parameter change and (per its proponents) yields better-conditioned training than vanilla AdamW.
Results
Section titled “Results”Not applicable — educational video.
Why it’s interesting
Section titled “Why it’s interesting”Muon is the de facto baseline that several filed papers benchmark against. Controlled LLM Training on Spectral Sphere argues Muon is “half-aligned” with µP — it controls update spectra via Newton–Schulz but places no constraint on weight spectra, so weights drift away from the µP-prescribed scale; SSO closes this loop and reports outperforming Muon on Dense 1.7B, MoE 8B-A1B, and a 200-layer DeepNet. Universal One-third Time Scaling in Learning Peaked Distributions explicitly frames Muon as an “intercept-only” intervention — it moves the LM-loss intercept but not the 1/3 scaling-law slope, since the slope is set by softmax-CE structure rather than by the optimizer. A refresher on what Muon actually does is useful scaffolding for both lines of argument, and for understanding why “Muon vs. AdamW” is a recurring axis in current pretraining papers.
See also
Section titled “See also”- Training stability at scale — Muon is a recurring baseline in this cluster; SSO’s framing positions it as the optimizer-side fork of the architecture-side stability story
- Controlled LLM Training on Spectral Sphere — argues Muon is half-aligned with µP and introduces SSO + MuonSphere as full-alignment alternatives
- Universal One-third Time Scaling in Learning Peaked Distributions — Muon as an intercept-only intervention against the universal 1/3 slope
- Mixture of Experts (MoE), Visually Explained — sibling video in the same batch
- Beyond Softmax: The Future of Attention Mechanisms — sibling video in the same batch
- How Attention Got So Efficient [GQA / MLA / DSA] — sibling video in the same batch