Mixture-of-Experts Models
Definition
A mixture-of-experts model contains multiple expert subnetworks and routes each token or input through only a subset of them. This can increase total parameter capacity without activating every parameter on every forward pass.
What is a mixture-of-experts model?
A mixture-of-experts, or MoE, model contains several expert subnetworks and a router that decides which experts process each token or input. Only a subset of the total parameters may be active for one forward pass.
Why use experts?
MoE can increase total model capacity without paying the full computation cost of activating every parameter for every token. The router learns to direct different inputs toward different experts.
Examples in modern LLMs
MoE designs appear in model families such as Mixtral, DeepSeek and Llama 4. A model can therefore have a very large total parameter count while using a much smaller number of active parameters per token. Total parameters and active parameters are different quantities.
Related terms, defined
Reference guide and primary sources
Wikipedia is used here as a terminology and history reference guide. Current model versions, institutional statistics and product-specific claims are also linked to first-party or institutional sources because those details can change faster than encyclopedia articles.