LinkedIn analytics tracking pixel for AIDOLS AI consulting website performance measurement
Models

Mixture of Experts (MoE)

Mixture of Experts (MoE) is a neural-network architecture in which only a small subset of "expert" sub-networks activate for any given input, cutting compute and inference cost dramatically while preserving large total parameter capacity.

Full definition

In an MoE layer, a learned router sends each token to the top-k of N experts (often k=2, N=8 to 128). Only those experts run, so a "1.6T-parameter" MoE may execute only ~30B parameters per token. GPT-4, Mixtral 8x22B, and DeepSeek V3 are MoE-based. MoE is the main architectural reason frontier model serving costs have not grown linearly with parameter count.

Why it matters

MoE is one of the biggest unit-economics wins in modern LLMs. It lets providers ship models with frontier-level quality at 3-5× lower inference cost than equivalent dense models — which directly lowers per-token API prices and the cost of any RAG or agent system built on top.

Example

Mistral's Mixtral 8x22B has 141B total parameters but activates only 39B per token, delivering quality comparable to dense 70B models at a fraction of the inference cost.

Source & further reading

Primary source: Shazeer et al. — "Outrageously Large Neural Networks: The Sparsely-Gated Mixture-of-Experts Layer" (ICLR) (2017).

Citation policy: this entry is part of the AIDOLS AI Implementation Glossary and may be quoted for research, journalism, and education with attribution to aidolsgroup.com/da/glossary/mixture-of-experts/.