scaling-optimal-strategy-combines-moe-with-massive-data

IN derived (depth 2)

Created 2026-06-21T09:54:53+00:00 · Reviewed 2026-06-21T14:41:08+00:00

The empirically optimal scaling strategy combines MoE architecture with massive data training: Chinchilla showed data is the dominant factor, and MoE eliminates the inference cost barrier of adding parameters, so the winning formula is many cheap parameters plus enormous training corpora.

Summary

The practical takeaway is that the winning recipe for building stronger models is to use an architecture where most parameters sit idle during inference, then pour enormous amounts of data through the small active subset. This shifts the scaling bottleneck away from per-query compute cost and toward data collection and curation, meaning model quality becomes primarily a function of how much you train on rather than how large the model appears to be.

Justifications

SL — MoE resolves the tension between "more parameters help" (scaling laws) and "inference must be affordable" (deployment economics)

Antecedents (all must be IN):

  • IN moe-enables-parameter-scaling-without-inference-cost — Mixture-of-Experts decouples total parameter count from inference cost by activating only a subset per token, as demonstrated by Llama 4's architecture where Scout activates 17B of 109B total and Maverick activates 17B of 400B total.
  • IN data-scaling-outweighs-parameter-scaling — Empirical results consistently show data volume matters more than parameter count: Chinchilla demonstrated models were undertrained, Llama 1 13B beat GPT-3 175B, and Llama 3 8B continued improving at 75x Chinchilla-optimal data.

Dependents

These beliefs depend on this one: