@serendip410: New blog on saving experts from an untold, silent failure mode in ultra-sparse MoEs : While pursuing ultra-sparse MoE t…

X AI KOLs Timeline News

Summary

The blog post identifies a silent expert death failure mode in ultra-sparse MoE training and introduces LM Loss as Auxiliary Loss (LLAL) to rescue lower-layer experts, improving validation loss and downstream performance.

New blog on saving experts from an untold, silent failure mode in ultra-sparse MoEs : While pursuing ultra-sparse MoE training (top-8/768), we found that lower-layer experts can become functionally useless while training/validation loss and load balance remain normal. All experts in these layers have much smaller weight norms than those in healthy layers. We call this silent expert death[Figure 1]. And it wasn’t just us. Auditing public MoEs, we found similar early-layer collapse signatures. For example, MiMo-v2.5-Pro and Qwen3.5-397B-A17B [Figure 2]. Benchmarks can hide unused capacity. Why? This is not merely a load-balancing failure. We found the learning signal itself disappears. Shallow-expert momentum (the accumulated gradients), as well as the square root of second moment, fell by up to ~3 orders of magnitude while deeper layers stayed stable[Figure 1]. By the time norms collapse, the model has already largely stopped relying on the lower pathway. We introduce LM Loss as Auxiliary Loss (LLAL): temporarily connect an early MoE layer to the LM head during the first few thouands steps then remove it. On 60B /180B models, this simple strategy rescued the lower layers—and the gain persisted after removal. It improved nearly every aspect of expert learning: • Better validation loss [Figure3] • No silent expert collapse [Figure 4] • Better downstream metrics [Figure 4] • Markedly better load balance Check out our blog for more details! A bunch of experiments inside—enjoy the 40-minute read :) https://alltoall.notion.site/save-lower-layer-moe-experts-llal…
Original Article
View Cached Full Text

Cached at: 08/25/26, 08:11 PM

New blog on saving experts from an untold, silent failure mode in ultra-sparse MoEs :

While pursuing ultra-sparse MoE training (top-8/768), we found that lower-layer experts can become functionally useless while training/validation loss and load balance remain normal. All experts in these layers have much smaller weight norms than those in healthy layers. We call this silent expert death[Figure 1].

And it wasn’t just us. Auditing public MoEs, we found similar early-layer collapse signatures. For example, MiMo-v2.5-Pro and Qwen3.5-397B-A17B [Figure 2]. Benchmarks can hide unused capacity.

Why? This is not merely a load-balancing failure. We found the learning signal itself disappears. Shallow-expert momentum (the accumulated gradients), as well as the square root of second moment, fell by up to ~3 orders of magnitude while deeper layers stayed stable[Figure 1]. By the time norms collapse, the model has already largely stopped relying on the lower pathway.

We introduce LM Loss as Auxiliary Loss (LLAL): temporarily connect an early MoE layer to the LM head during the first few thouands steps then remove it. On 60B /180B models, this simple strategy rescued the lower layers—and the gain persisted after removal. It improved nearly every aspect of expert learning: • Better validation loss [Figure3] • No silent expert collapse [Figure 4] • Better downstream metrics [Figure 4] • Markedly better load balance

Check out our blog for more details! A bunch of experiments inside—enjoy the 40-minute read :)

https://alltoall.notion.site/save-lower-layer-moe-experts-llal…

Similar Articles

Post-Trained MoE Can Skip Half Experts via Self-Distillation

Hugging Face Daily Papers

ZEDA is a low-cost framework that converts post-trained static MoE models into dynamic ones by injecting zero-output experts and using self-distillation, achieving over 50% expert FLOP reduction with marginal accuracy loss on benchmarks.

Mixture of Experts (MoEs) in Transformers

Hugging Face Blog

Hugging Face blog post explaining Mixture of Experts (MoEs) architecture in Transformers, covering the shift from dense to sparse models, weight loading optimizations, expert parallelism, and training techniques for MoE-based language models.