What it means
In a conventional dense model every parameter participates in every token. A mixture-of-experts model instead contains many sub-networks — experts — plus a small router that picks a handful for each token. Total parameter count can be enormous while the parameters actually used per token stays modest.
This decouples two numbers that used to move together: how much a model knows and how much it costs to run. That is why vendors now quote both total and active parameters, and why a headline parameter count means less than it used to.
The costs are real. All experts must be held in memory even though few are used, so memory requirements track total size while compute tracks active size. Training is also harder — routing can collapse onto a few favored experts unless deliberately balanced.
Why it matters
Most frontier models are now mixtures of experts, which is why capability has kept climbing without inference cost climbing proportionally. It also means comparing models by total parameter count across architectures is meaningless — a large sparse model and a smaller dense one can cost the same to run.
In practice
When evaluating an open-weight mixture-of-experts model for self-hosting, size your hardware on TOTAL parameters, not active. The memory bill is set by what must be resident, not by what fires.
Where this shows up
Tools and models in our catalog.
DeepSeek R1First open-source reasoning model matching OpenAI o1. MIT license. R1-0528 adds JSON output and function-calling. Distilled variants 1.5B-70B. Banned on gov devices in multiple countries.
Kimi K3Moonshot AI's flagship — a 2.8 trillion parameter mixture-of-experts model activating 16 of 896 experts per token, with a 1 million token context window and native vision. Beats Claude Opus 4.8 on most coding benchmarks; largest open-weights model from a Chinese lab. Weights due July 27, 2026.
Mistral Large 3Mistral's most capable model. 675B total MoE (41B active), 256K context, multimodal. Top open-source coding model on LMArena. Roughly half the cost per token of GPT-5.1. Modified MIT license.
Qwen3.8-MaxAlibaba's frontier mixture-of-experts model: 2.4 trillion total parameters, about 95 billion active per request, roughly a one-million-token context window, served API-only via QwenCloud.