BestLLMfor Your hardware. Your LLM. Your call.
◆ The kits◆ Kits APIOpen data Find my LLM
Guide · 2026-09-20

Mixture of Experts (MoE) Explained: Why a 120B Model Can Outrun a 27B

◆ Local AI — Your private ChatGPT, free, on your own machine, in an hour · $24 · or all kits $49 →

MoE models keep a huge number of parameters in memory but use only a small slice for each token. What that buys you, what it costs, and how to run one on a consumer GPU.

By Mohamed Meguedmi·Last updated 2026-09-20·8 min read·Tested on Windows, macOS, Linux

Key takeaways

  • A mixture-of-experts (MoE) model replaces each big feed-forward block with many smaller "experts" and a router that picks a few of them for every token.
  • Two numbers describe it: total parameters (what must fit in memory) and active parameters (what is computed per token). A name like "30B-A3B" means 30B total, 3B active.
  • Memory follows the total; speed follows the active. An MoE needs the RAM of a big model and runs at the pace of a small one.
  • In our catalog, Qwen 3 30B-A3B and the dense Qwen 3 32B both weigh 19 GB at 4-bit, yet the MoE is rated more than three times faster on the same hardware.
  • Because most experts sit idle on any given token, MoE models tolerate being partly offloaded to system RAM far better than dense models. That is how 100B-class models run on a 16–24 GB GPU.

What a mixture of experts is

The Local AI Kit

Your private ChatGPT, free, on your own machine in an hour — LM Studio, Ollama, Open WebUI, your documents, no cloud.

  • Lifetime online access
  • PDF + files
  • 30-day refund

A standard ("dense") transformer pushes every token through every parameter. Most of those parameters live in the feed-forward layers. An MoE model splits each feed-forward layer into a set of parallel sub-networks, the experts, typically 8 to 256 of them, and adds a small router that scores the experts for each token and sends the token to the best few, commonly 2 to 8. The outputs are combined, and the token moves to the next layer, where a different set of experts may be chosen.

The attention layers and embeddings are usually shared by all tokens; only the feed-forward capacity is sparse. The idea goes back decades, and was adapted to large language models in work such as Google's Switch Transformer (2021). It reached open-weight users with Mistral AI's Mixtral 8x7B at the end of 2023. As of September 20, 2026, 78 of the 239 models in the BestLLMfor catalog are MoE, including most of the largest.

What the "experts" are not

The name suggests a committee of specialists: one expert for code, one for French, one for biology. That is not what happens. Routing is learned, per token and per layer, and the specializations that emerge are mostly low-level and hard to interpret: punctuation, certain token types, syntactic roles. You cannot remove "the math expert," and nothing in an MoE resembles separate models taking turns. It is one network with conditional wiring.

Total vs active parameters

ModelTotal parametersActive per tokenMemory at 4-bitLicense
gpt-oss 20B21B3.6B13 GBApache 2.0
Qwen 3 30B-A3B30B3B19 GBApache 2.0
Qwen3-Coder 30B-A3B30B3.3B19 GBApache 2.0
GLM 4.7 Flash31B≈ 3B19 GBMIT
Qwen 3.6 35B-A3B35B3B21 GBApache 2.0
Mixtral 8x7B47B≈ 13B26 GBApache 2.0
Llama 4 Scout109B17B65 GBLlama 4 Community
gpt-oss 120B117B5.1B70 GBApache 2.0
Qwen 3.5 122B-A10B122B10B73 GBApache 2.0
Qwen 3 235B-A22B235B22B142 GBApache 2.0
DeepSeek R1671B37B400 GBMIT

From the BestLLMfor model catalog, September 20, 2026.

Mixtral's name is a classic trap: "8x7B" is not 56B. The experts share attention layers, so the total is 47B, and with two experts active per token roughly 13B parameters do the work.

Memory follows the total, speed follows the active

Generating a token means reading from memory every weight that token uses. A dense model reads all of them. An MoE reads the shared layers plus only the selected experts. Since generation speed on local hardware is set by memory bandwidth divided by the bytes read per token, fewer active parameters translate almost directly into more tokens per second.

ModelTypeMemory at 4-bitCatalog speed rating, mid-range GPUHigh-end GPU
Qwen 3 8BDense, 8B5 GB35 tok/s90 tok/s
Qwen 3 32BDense, 32B19 GB12 tok/s30 tok/s
Qwen 3 30B-A3BMoE, 3B active19 GB40 tok/s100 tok/s
Llama 3.3 70BDense, 70B40 GB6 tok/s20 tok/s
gpt-oss 120BMoE, 5.1B active70 GB35 tok/s90 tok/s

Speed ratings are the estimated tiers used in the BestLLMfor catalog, assuming the model fits in fast memory. They are planning figures, not measurements of your machine.

Read the two bold rows against their neighbors. The 30B MoE costs the same memory as the dense 32B and runs like an 8B. The 120B MoE needs nearly twice the memory of a dense 70B and is rated several times faster. We observed the same pattern in measured data: on a MacBook Pro M5 Max with 128 GB, gpt-oss 120B generated at 75–79 tokens per second while a dense 27B model managed 37 (full benchmark).

Is a 30B MoE as smart as a 30B dense model?

No, and not as weak as a 3B either. A long-standing rule of thumb places an MoE's capability near the geometric mean of its total and active parameters: for 30B total and 3B active, around 9–10B dense-equivalent. It is a heuristic, not a law, and recent MoE models often beat it. The honest summary: at equal memory, a dense model is usually somewhat stronger; at equal speed, the MoE is far stronger. Which one is "better" depends on whether your constraint is VRAM or patience.

Why labs build them

  • Training cost scales with active parameters. A lab can train a model with the knowledge capacity of hundreds of billions of parameters for the compute bill of a few tens of billions.
  • Serving cost per token is lower, for the same reason, once the model is spread across enough GPUs.
  • Capacity is cheap to add. More experts means more stored knowledge without slowing generation.

The price is memory, plus engineering complexity: routers must be trained to spread load evenly, and serving needs fast interconnect between GPUs.

Running an MoE on consumer hardware

The MoE trade suits two kinds of machines unusually well.

  • Large unified memory. A Mac with 64–128 GB, or a Ryzen AI Max+ machine, has plenty of capacity and moderate bandwidth. Dense 70B models crawl there; MoE models with 3–10B active parameters fly. See AI hardware and best LLMs for a 128 GB Mac.
  • A modest GPU plus plenty of system RAM. Keep attention layers and the KV cache on the GPU and leave expert weights in RAM. Because only a few experts are touched per token, the penalty is far smaller than offloading a dense model.
# llama.cpp: everything on the GPU except the experts of the first 24 layers
llama-server -m gpt-oss-120b-Q4_K_M.gguf -ngl 99 --n-cpu-moe 24 -c 16384

Raise --n-cpu-moe until the model fits in VRAM, then lower it as far as memory allows. With 64 GB of system RAM and a 16–24 GB GPU, this makes 100B-class MoE models usable at reading speed, which no dense model of that size can manage. Fast system RAM matters here: dual-channel DDR5 helps measurably. For the memory arithmetic, see what is VRAM and the VRAM calculator. Catalog data on this page is open through the BestLLMfor public API (CC BY 4.0) and our MCP server.

When to choose an MoE

Your constraintPick
8–12 GB of VRAM, little system RAMA dense 8B–14B model; MoE totals will not fit
16 GB of VRAMgpt-oss 20B (13 GB): MoE speed in a small footprint
24 GB of VRAMA 30B-A3B-class MoE for speed and agents; a dense 27B–32B when answer quality matters more than pace
64–128 GB of unified memoryMoE, clearly: gpt-oss 120B or a 100B-class Qwen
GPU plus 64 GB+ of DDR5A large MoE with expert offload

Frequently asked questions

What does MoE mean in AI?

Mixture of experts. It is a model architecture in which each layer contains many expert sub-networks and a router activates only a few of them for each token, so only a fraction of the model's parameters are used at any moment.

What does 30B-A3B mean?

30 billion total parameters, 3 billion active per token. The first number tells you how much memory the model needs; the second tells you roughly how fast it will run.

Does an MoE model use less VRAM?

No. All experts must be loaded, because any of them can be selected for the next token. An MoE needs the memory of its total parameter count. What it saves is computation and memory reads per token, which is why it is faster.

Is a mixture-of-experts model better than a dense model?

At the same speed, yes: it stores far more knowledge. At the same memory footprint, a dense model is usually a little stronger. MoE is the better trade when memory is plentiful and speed is the constraint.

Can I run an MoE model partly on the CPU?

Yes, and it works much better than with dense models. In llama.cpp the --n-cpu-moe option keeps expert weights in system RAM while attention stays on the GPU. Since few experts are used per token, the slowdown is moderate.

Is each expert specialized in a topic?

Not in a human-readable way. Routing is learned per token and per layer, and experts tend to specialize in low-level patterns rather than subjects like law or code.

Recommended hardware

A current option for local AI: GMKtec EVO-X2 64GB / 1TB (Ryzen AI Max+ 395). Match memory to your model and software. A mini PC is a complete PC alternative; Mac/MLX and CUDA instructions require compatible hardware.

Amazon Check GMKtec EVO-X2 64GB / 1TB (Ryzen AI Max+ 395) price →

As an Amazon Associate, BestLLMfor earns from qualifying purchases, at no extra cost to you. It does not influence our independent rankings.

Did this guide help?

Found an error or have feedback? Let us know — it helps everyone who reads this guide.