JA EN
LearnLarge Language Models
·★ MEMBER·PAPER·10 min read

Scaling Skepticism — A Genealogy of the "Just Make It Bigger" Critique

A fair accounting of the case against "more parameters, more data" — data exhaustion, the reasoning wall, and the world-model dispute. The evidence for scaling gets the same scrutiny as the evidence against it, and every claim comes with the observation that would settle it.

ModalitytextTaskreasoning

Training Compute-Optimal Large Language Models

Primary source — what this article is built on

undefined2022-03-29undefined2026-08-274y 5mo later

Scaling Laws for Neural Language ModelsarXiv:2001.08361Paper page·PDF
Training Compute-Optimal Large Language ModelsJordan Hoffmann, Sebastian Borgeaud, Arthur Mensch et al. · 2022-03-29 · v1arXiv:2203.15556Paper page·PDF
Will we run out of data? Limits of LLM scaling based on human-generated dataarXiv:2211.04325Paper page·PDF
Scaling Data-Constrained Language ModelsarXiv:2305.16264Paper page·PDF
Emergent Abilities of Large Language ModelsarXiv:2206.07682Paper page·PDF
Are Emergent Abilities of Large Language Models a Mirage?arXiv:2304.15004Paper page·PDF
GSM-Symbolic: Understanding the Limitations of Mathematical Reasoning in Large Language ModelsarXiv:2410.05229Paper page·PDF
Faith and Fate: Limits of Transformers on CompositionalityarXiv:2305.18654Paper page·PDF
Emergent World Representations: Exploring a Sequence Model Trained on a Synthetic TaskarXiv:2210.13382Paper page·PDF
Evaluating the World Model Implicit in a Generative ModelarXiv:2406.03689Paper page·PDF
undefined

We investigate the optimal model size and number of tokens for training a transformer language model under a given compute budget. We find that current large language models are significantly undertrained, a consequence of the recent focus on scaling language models whilst keeping the amount of training data constant. By training over 400 language models ranging from 70 million to over 16 billion parameters on 5 to 500 billion tokens, we find that for compute-optimal training, the model size and the number of training tokens should be scaled equally: for every doubling of model size the number of training tokens should also be doubled. We test this hypothesis by training a predicted compute-optimal model, Chinchilla, that uses the same compute budget as Gopher but with 70B parameters and 4$\times$ more more data. Chinchilla uniformly and significantly outperforms Gopher (280B), GPT-3 (175B), Jurassic-1 (178B), and Megatron-Turing NLG (530B) on a large range of downstream evaluation tasks. This also means that Chinchilla uses substantially less compute for fine-tuning and inference, greatly facilitating downstream usage. As a highlight, Chinchilla reaches a state-of-the-art average accuracy of 67.5% on the MMLU benchmark, greater than a 7% improvement over Gopher.


The sound barrier was real. It was also crossed

In the propeller era, making an aircraft faster was a solved problem: build a bigger engine. Records climbed for years on exactly that recipe — and then, as speeds approached Mach 1, they stopped climbing. Engineers split three ways. There is no barrier, we just need more power. There is a barrier, and humans will never fly faster. There is a barrier, but it comes from propellers and straight wings, and a different design would clear it.

The third camp was right. The barrier was real and it was crossed — not by a bigger engine, but by swept wings and jet propulsion.

The argument now running through large language models has the same shape. "More parameters and more data make it smarter" held up remarkably well for several years after 2020. And now, from several directions at once, people are arguing that the recipe won't get us where we're going. This article lays those arguments out fairly. Not to mock the skeptics or bury the believers, but to sort out which claim rests on which evidence — and what observation would settle each one.

First, state the claim being attacked — precisely

Before reading the skeptics, let's pin down the target. Vague targets are easy to hit.

A scaling law is not the woolly assertion that bigger is smarter. It is the quantitative claim that loss falls smoothly as a power of parameter count and data size. Hoffmann et al.'s Chinchilla paper fit it to this form:

L(N,D)=E+ANα+BDβL(N, D) = E + \frac{A}{N^{\alpha}} + \frac{B}{D^{\beta}}
(1)

LL is the loss (how hard the next word is to guess), NN the parameter count, DD the number of training tokens. EE is the term that never goes away no matter how big you build, standing in for the irreducible unpredictability of language itself. A/NαA/N^{\alpha} is the penalty for the model being too small; B/DβB/D^{\beta} is the penalty for having too little data. So the equation decomposes underperformance into "not enough model," "not enough data," and "impossible in principle." In the paper's fit, α\alpha and β\beta both came out near 0.3 — close enough to each other that when the budget grows, the optimum is to grow model and data at the same rate. That is what the "Chinchilla rule" actually is; the derivation is in Scaling Laws From Scratch.

The strongest evidence on the pro-scaling side is that the equation extrapolated. The GPT-4 technical report describes fitting the law to small models trained with up to 10,000× less compute, then predicting the production model's final loss ahead of time. That is a serious engineering result — it is the same kind of thing as computing a bridge's strength before you build it. The intellectual backbone is Rich Sutton's "The Bitter Lesson" (2019): across AI's history, methods that hand-encode human knowledge have lost, in the long run, to methods that let compute do the work.

Here is where the debate most often goes off the rails. Three separate claims travel under one banner: (1) more input lowers loss, (2) lower loss raises capability, (3) rising capability eventually reaches human-level intelligence. Scaling laws demonstrated (1). Claim (2) holds roughly, empirically, most of the time. Claim (3) isn't a finding at all — it's a bet. Skeptics usually aim at (2) or (3); defenders usually answer with the strength of (1). A lot of the apparent disagreement is just that mismatch, and keeping the three claims apart is the most useful habit you can bring to any argument in this space.

And the equation never promised unbounded improvement. A power law that looks like a straight line on a log-log plot means, on a linear axis, that every equal increment of improvement costs a constant multiple more input. Believers and skeptics are staring at the same graph.

FIG 1Toggle between logarithmic and linear axes. The thing to feel here isn't the names of the curves — it's how something tame on a log axis becomes a different animal on a linear one. It's also why scaling-law plots are always drawn log-log

Let's put a number on that multiple, using Chinchilla's exponent.

alpha = 0.34          # the N-side exponent Chinchilla fit
# At the optimal allocation, N grows as C^0.5 (D grows at the same rate)
def compute_multiplier(shrink):        # shrink=0.5 -> halve the model-side loss term
    n_mult = shrink ** (-1 / alpha)    # required parameter-count multiple
    return n_mult ** 2                 # since N ∝ C^0.5, compute is that squared

print(round(compute_multiplier(0.5)))  # ≈ 59

Halving just the model-side loss term costs roughly 59× the compute. Halving it again costs another 59×. This isn't a criticism; it's what the law says when you read it literally. The difference between a believer and a skeptic is whether that staircase looks climbable or looks like a wall. Below are the three obstacles people have placed on the steps — each a different kind of claim, and each falsified by a different observation.

The equation demands more , but human beings have written a finite amount of text. Villalobos et al. at Epoch AI estimate that the stock of public human-generated text gets fully consumed somewhere between the late 2020s and the early 2030s. The range is wide because the answer moves by several multiples depending on w

What's behind this

§

Members-only from here

371 walkthroughs, 26 textbook chapters, 48 student units and 6 close readings — all included for $4.99/mo, with three new explainers every day. Cancel any time; access runs to the end of the period.

Already a member? Sign in to keep reading

References

  1. Scaling Laws for Neural Language Models. arXiv:2001.08361Paper page·PDF
  2. Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya et al.. (2022-03-29) Training Compute-Optimal Large Language Models. arXiv:2203.15556Paper page·PDF
  3. Will we run out of data? Limits of LLM scaling based on human-generated data. arXiv:2211.04325Paper page·PDF
  4. Scaling Data-Constrained Language Models. arXiv:2305.16264Paper page·PDF
  5. Emergent Abilities of Large Language Models. arXiv:2206.07682Paper page·PDF
  6. Are Emergent Abilities of Large Language Models a Mirage?. arXiv:2304.15004Paper page·PDF
  7. GSM-Symbolic: Understanding the Limitations of Mathematical Reasoning in Large Language Models. arXiv:2410.05229Paper page·PDF
  8. Faith and Fate: Limits of Transformers on Compositionality. arXiv:2305.18654Paper page·PDF
  9. Emergent World Representations: Exploring a Sequence Model Trained on a Synthetic Task. arXiv:2210.13382Paper page·PDF
  10. Evaluating the World Model Implicit in a Generative Model. arXiv:2406.03689Paper page·PDF

This article is written from the source paper above. Where they differ, the original is authoritative.

Comments

Sign in to comment