AI inference glossary
Model architectureMoE

Mixture of experts

Also known as sparse MoE

In plain English

A mixture-of-experts model is like a large team of specialists: it calls only the few experts best suited to each token instead of using the whole team every time.

Technical definition

A mixture-of-experts model contains many feed-forward expert networks but routes each token through only a selected subset.

Engineering details

A router scores experts for each token, and top-k routing activates the chosen experts plus any shared experts. This lets total parameter count grow much larger than the computation used for one token.

Why it matters

MoE inference trades arithmetic sparsity for systems complexity. Expert weights still consume memory, routing can become imbalanced, and distributed deployments require all-to-all communication for dispatch and combine.

How to read it in InferenceX

InferenceX covers models with hundreds of experts and reports both total and activated parameters where relevant. TP, EP, DP, precision, and network topology determine whether MoE sparsity becomes a real serving advantage.