What would happen if instead of one big neural network you had hundreds of smaller ones â each specializing in different kinds of inputs â and a smart receptionist who decided which specialist to consult for each question? That is Mixture of Experts (MoE) in one sentence.
The idea is older than the deep-learning era. In 1991 Robert Jacobs and Michael Jordan proposed training separate "expert" networks alongside a "gating network" that learned to blend their outputs. The insight: divide a hard problem among specialists rather than forcing a single monolithic model to handle everything.
What changed everything is scale. In 2017 Noam Shazeer and colleagues at Google introduced the Sparsely-Gated Mixture-of-Experts layer that only activates a small subset â say top-2 out of 64 â of expert subnetworks for each input token. The rest stay idle. Suddenly you could have a model with 137 billion parameters but pay the compute cost of a much smaller one.
That trade-off â large capacity, small active cost â is why MoE architectures power some of the biggest models ever deployed, including GPT-4 (reportedly a 16-expert MoE) and Google's Gemini Ultra. Understanding MoE means understanding how AI escaped the compute wall that would otherwise have stopped scaling cold.
Comments
Loading comments...