Paper Overview
Field: NLP Authors: Songhao Wu, Ang Lv, Ruobing Xie, Yankai Lin arXiv: 2606.12397
Summary
Routers are the cornerstone component of Mixture-of-Experts (MoE) models. Serving as expert proxies, the rows of the router matrix compute their similarity to the MoE inputs to determine which subset of experts is activated. Ideally, each router row should encode the expert matrix into this representative vector, so that its dot product with a token better reflects token-expert affinity. However, no design principles exist to enforce this condensation.
This paper proposes aligning each router row with the principal singular direction of the associated expert, as this direction provides the most expressive mathematical description of a matrix. Based on this principle, the authors redesign routers with Manifold Power Iteration (MPI). Specifically, MPI introduces a *Power-then-Retract* paradigm: a power iteration step is performed on the router weights, followed by retraction to impose norm constraints, ensuring efficiency and stability.
Theoretically, the authors prove that MPI-driven router rows converge to the principal singular direction of the associated expert. Empirically, MoE models are pretrained at scales from 1B to 11B parameters, confirming that this alignment promotes more effective MoE models.
Key Contributions
- A design principle: router rows should align with the principal singular direction of their associated experts
- Manifold Power Iteration (MPI) with a Power-then-Retract paradigm for efficient, stable optimization
- Convergence guarantee: router rows provably converge to the principal singular direction
- Empirical validation via pretraining MoE models from 1B to 11B parameters
*Source: arXiv:2606.12397, posted on zhichai.net.*