Start here
Mixture of Experts (MoE), in plain language
Sparse routing mechanisms, gating networks, Top-K dispatch, and auxiliary load balancing. MoE models increase parameter capacity without activating every parameter per token, trading dense compute for routing and communication complexity.
For a small example, a router assigns four tokens to two experts. Apply top-k scores, respect capacity, combine expert outputs, and observe what happens when every token chooses one expert. This is the mechanism to keep in view as the lesson becomes more technical. Before moving on, identify the input, transformation, output, and one observation that would falsify your conclusion.
Key points
- Experts, routers, top-k selection, sparse activation, and capacity.
- Token dispatch, combine weights, and auxiliary load balancing.
- Active vs total parameters and dense-compute comparison.