Overview of the MoE (Mixture of Experts) Language Models
mainThe models described in this documentation are part of the research paper "Efficient Large Scale Language Modeling with Mixtures of Experts". They include both dense and sparse (MoE-based) architectures:
- Dense models: Parameter counts range from 125M to 13B.
- Sparse (MoE) models: Parameter counts range from 15B to 1.1 Trillion.
The 1.1 Trillion parameter MoE model is designed for efficiency through sparse computation. It leverages the fact that only a small fraction of parameters are active for any given input. For example, the 1.1T MoE model requires only ~30% more FLOPS compared to a 6.7B parameter dense model, despite having a 160x increase in total parameters.