The scaling hypothesis is the empirical claim that — within the Transformer architecture — pouring in more parameters, more data, and more compute reliably yields more capability, in a way that is smooth and predictable rather than sporadic.
Two key papers anchor the field:
- Kaplan et al. (2020). Loss decreases as a power law in model size, dataset size, and compute. The law gives quantitative guidance on how to allocate compute.
- Chinchilla (Hoffmann et al., 2022). Updated Kaplan's allocation rule: scale parameters and tokens together. The compute-optimal ratio is roughly 20 training tokens per parameter. Many earlier models (GPT-3 included, with about 1.7 tokens/param) were undertrained.
The post-Chinchilla pivot
By 2024 the field had moved past Chinchilla-optimal. LLaMA 3 (8B) was trained on 15T tokens — 1,875 tokens/param, ~94× past Chinchilla. The reasoning: training cost is paid once, but inference cost is paid forever. A smaller, over-trained model is cheaper to serve at the same quality, even if its training compute is "wasted" by Chinchilla's lights.
This shift is why the open weights ecosystem now favors aggressively over-trained 7-70B models over Chinchilla-optimal 200-400B ones for most production deployments.