The Basic Scaling Law
Kaplan et al. "Scaling Laws for Neural Language Models" (arXiv:2001.08361) established the foundational empirical relationship. Trained across a wide range of model sizes and data budgets, they found that language model loss L follows a power law with respect to three factors: the number of model parameters N, the number of training tokens D, and the total compute budget C.
The relationship takes the form: L(N) ~ N^(-0.076) when data is unlimited, L(D) ~ D^(-0.095) when model size is unlimited, and L(C) ~ C^(-0.050) for the compute-optimal frontier. These exponents are approximate and depend on architecture and data distribution, but the key point is that the relationships are smooth power laws, not step functions. Loss decreases predictably and continuously as you scale each factor.
This predictability is what makes scaling laws useful. You can train smaller models at lower compute, measure their loss, fit the power-law curve, and extrapolate to predict what loss a much larger model would achieve before you spend the compute to train it. Kaplan et al. validated this extrapolation across many orders of magnitude of compute, suggesting the relationship holds across a wide range.
The Chinchilla Correction
Hoffmann et al. (arXiv:2203.06840) identified a key limitation in the original Kaplan analysis: it was done in a data-limited regime where model size was varied more than data size. When Hoffmann et al. ran a more careful experiment varying both model size and data size jointly under a fixed compute budget, they found the optimal allocation was different from what Kaplan et al. implied.
The Kaplan analysis suggested approximately N ~ C^(0.73), meaning model size should scale faster than data for a given compute budget. The Chinchilla analysis found the optimal ratio is closer to equal scaling: N and D should both increase at roughly the same rate. Larger models trained on fewer tokens than implied by this ratio are simply undertrained. This is why the Chinchilla 70B model, trained on 1.4T tokens, was competitive with models many times larger trained on fewer tokens.
The Chinchilla finding had immediate practical consequences. If optimal training requires more data than earlier models received, then many large models already trained were operating suboptimally. For organizations planning new training runs, the prescription was clear: allocate more of your compute budget to data rather than model parameters, up to the compute-optimal ratio.
Emergent Capabilities: What the Evidence Actually Shows
The term "emergent capabilities" describes abilities that appear suddenly at scale: a model below some threshold cannot do the task at all, and a model above the threshold can. The apparent suddenness has been central to arguments both for and against continued scaling.
Wei et al. "Emergent Abilities of Large Language Models" (arXiv:2206.07682) documented numerous tasks where performance appeared to jump from near-random to well-above-random at specific model scales. Tasks like multi-step arithmetic, certain reasoning problems, and some language understanding benchmarks showed this pattern.
However, Schaeffer et al. "Are Emergent Abilities of Large Language Models a Mirage?" (arXiv:2304.15004) argued that many apparent emergent abilities are artifacts of the metrics used rather than genuine threshold phenomena. When benchmark accuracy is used as the metric (a discontinuous function that jumps when the model passes a threshold number of problems), capability appears to emerge suddenly. When continuous metrics are used instead (such as probability assigned to the correct answer rather than whether the answer is correct), the same models show smooth, predictable improvement with scale. The apparent emergence was in many cases a measurement artifact.
What Scaling Laws Do Not Predict
Scaling laws predict loss on the pretraining distribution. They do not predict performance on specific downstream tasks, safety properties, alignment, reasoning ability in novel domains, or real-world usefulness. Loss is correlated with these properties, but the correlation is not deterministic.
Some capabilities are not well-predicted by next-token loss at all. A model can have excellent loss while being poor at formal mathematical reasoning, code debugging, or consistent long-horizon planning. These require specific structural properties of the training data and may require architectural innovations beyond raw scale. There is active research into whether current scaling trends will continue to improve these capabilities or whether a wall exists.
Scaling laws are also empirically established within a specific compute range. Kaplan et al. validated extrapolation across roughly 7 orders of magnitude of compute. Whether the same power laws continue at 10 or 12 orders of magnitude above the smallest models in their study is unknown. Historical evidence of sustained continuity is encouraging but does not guarantee the laws hold indefinitely.