Multi-Head Mixture-of-Experts
Xun Wu, Shaohan Huang, Wenhui Wang, Furu Wei
TL;DR
Sparse Mixture-of-Experts (SMoE) scales model capacity but suffers from low expert activation and coarse token semantics. The authors propose Multi-Head Mixture-of-Experts (MH-MoE), which splits each token into h sub-tokens and routes them to multiple experts via a multi-head layer and a Token-Splitting-Merging (TSM) process, enabling denser activation and finer-grained representation without increasing computation. The approach is straightforward to implement and decoupled from other SMoE optimizations, and it yields consistent improvements in perplexity and downstream tasks across English-focused language modeling, multilingual language modeling, and masked multimodal modeling, with extensive ablations and analyses revealing denser activation and polysemous-token-specific routing. These results highlight MH-MoE as a practical path to scaling SMoE while preserving efficiency and enabling richer, cross-space representations.
Abstract
Sparse Mixtures of Experts (SMoE) scales model capacity without significant increases in training and inference costs, but exhibits the following two issues: (1) Low expert activation, where only a small subset of experts are activated for optimization. (2) Lacking fine-grained analytical capabilities for multiple semantic concepts within individual tokens. We propose Multi-Head Mixture-of-Experts (MH-MoE), which employs a multi-head mechanism to split each token into multiple sub-tokens. These sub-tokens are then assigned to and processed by a diverse set of experts in parallel, and seamlessly reintegrated into the original token form. The multi-head mechanism enables the model to collectively attend to information from various representation spaces within different experts, while significantly enhances expert activation, thus deepens context understanding and alleviate overfitting. Moreover, our MH-MoE is straightforward to implement and decouples from other SMoE optimization methods, making it easy to integrate with other SMoE models for enhanced performance. Extensive experimental results across three tasks: English-focused language modeling, Multi-lingual language modeling and Masked multi-modality modeling tasks, demonstrate the effectiveness of MH-MoE.
