JOVANA
Library Glossary Getting Started Three Levels Fields How it works Mission
Join the mission
All guides

Scaling Laws & Emergent Abilities

Why pouring in more compute, data, and parameters made models reliably better — what "emergent abilities" really are once you look closely, and the bitter lesson lurking behind a decade of progress.

A curve you can plot before you spend a dime

By this point in the ladder you know how a Transformer is built and how a large language model is trained: predict the next token, measure the loss, descend the gradient. The natural next question is the one that has driven the whole frontier — what happens if you just make everything bigger? Around 2020, researchers found something genuinely surprising. As you increase model size, data, and compute together, the training loss does not wander or plateau randomly; it falls along a smooth, tidy line on a log-log plot — a power law. This is the heart of scaling laws.

Why is a straight line such a big deal? Because it lets you forecast. Fit the curve on a handful of small, cheap training runs, extrapolate it, and you can predict — before committing millions of dollars and weeks of GPU time — roughly how low the loss of a much larger model will land. That turned model-building from a gamble into something closer to engineering. It is also, frankly, the reason the field bet so hard on scale: when a curve keeps holding across several orders of magnitude, the obvious move is to ride it.

Three knobs, and the right way to turn them

Scaling has three ingredients: the number of parameters (model size), the size of the dataset, and the total compute spent. The naive instinct — heard most loudly in headlines about "a trillion-parameter model" — is that parameter count is the trophy. It is not. The deeper lesson came in 2022 with the *Chinchilla* result: for a fixed compute budget, many earlier models were badly oversized and undertrained. They had too many parameters fed too little data. Match the two, and a smaller model trained on more tokens beats a bigger model starved of them.

So the real game is compute-optimal allocation: given the budget you can afford, how should you split it between making the model bigger and showing it more data? This connects straight back to ideas from earlier rungs — capacity, overfitting, and generalization. A model too small can't capture the patterns; a model too big trained on too little data wastes its capacity. Scaling laws give a rough recipe for the sweet spot, and the data-hunger they revealed is exactly why teams now obsess over collecting and cleaning enormous, diverse pretraining corpora.

loss(N, D)  ≈  E  +  A / N^a  +  B / D^b

   N = parameters    D = data (tokens)    E = irreducible floor
   ↑ raise either one and loss falls — but along a curve, not a cliff
A scaling law in cartoon form: loss falls smoothly as parameters N and data D grow, toward an irreducible floor E.

Notice the E in that formula — an irreducible floor. There is some loss you can never drive away, because language has genuine randomness in it: even a perfect model can't know which word you'll choose next. Scaling shrinks the *reducible* gap, not the floor. And scaling is neither free nor infinite: it burns enormous money, energy, and data, and there are real signs that the easiest gains are slowing as high-quality training text runs short.

Emergent abilities — and why to read them carefully

Here is the twist that made scaling feel almost magical. The loss curve is smooth, but certain *practical skills* did not seem to arrive smoothly. On tasks like multi-step arithmetic, or following a tricky instruction, tiny models scored essentially zero — and then, past some size, they suddenly started getting things right. These are called emergent abilities: capabilities that appear to switch on once a model crosses a threshold, like water flipping to ice at a temperature rather than slowly thickening. It looked less like polishing and more like a phase change.

This idea was thrilling — and a little unnerving — because it suggested scale unlocks genuinely *new* skills you didn't train for and couldn't predict. It also became one of the headline arguments for building ever-larger models. Many of these surprises show up alongside techniques you've met: in-context learning (learning a task from examples in the prompt, with no weight updates) and chain-of-thought prompting (asking the model to reason step by step) both work far better in large models than small ones.

Now the honesty, because this is where the field corrected itself. An influential 2023 analysis argued that much of the apparent "emergence" is an artifact of *how we measure*. Grade a task all-or-nothing — you only score if every digit of an answer is exactly right — and improvement looks like a sudden jump. Re-grade the very same outputs with partial credit (how many digits were correct), and the smaller models turn out to have been steadily improving all along: a smooth climb, not a switch. So some emergent abilities are real surprises; others are mirages created by a harsh, discontinuous metric.

The bitter lesson

Step back from any single model and you find a pattern that has repeated for seventy years. It was named by researcher Richard Sutton in a short 2019 essay, "the bitter lesson": general methods that simply *use more computation* — learning and search that improve as you throw data and processing at them — eventually beat methods built on clever, hand-crafted human knowledge. It's called *bitter* because it stings: the elegant insights researchers lovingly engineered into their systems keep getting steamrolled by brute-force approaches that just scale.

The history backs it up, and you've already lived through pieces of it on this ladder. In chess, decades of encoded grandmaster strategy lost to engines that searched vast numbers of positions. In Go, hand-tuned heuristics lost to AlphaGo and its successors, which learned from massive self-play. In vision and translation, painstaking hand-built features were overtaken again and again by general deep networks trained on more data with more compute. Each time the instinct was to build in what we know; each time the lasting wins came from methods that learned it themselves.

Read it as a provocative argument, not gospel — and notice its limits. The lesson does *not* say human knowledge is worthless; it says don't hard-wire it in ways that *cap* what a system can learn. The structure that helps a model learn — the design of the Transformer itself, the training recipe — is itself a human contribution. And scaling has hard limits: cost, energy, the environmental footprint, and a finite supply of good data. Best read it as a strong, hard-won bias toward general, scalable methods and a warning against over-engineering — not a law that more compute always wins.

What this does — and doesn't — tell us about the future

Put the three ideas together and you have the engine of the last decade: scaling laws made progress *forecastable*, emergent-looking abilities made it feel *open-ended*, and the bitter lesson made *scale itself* the strategy. That is a real and powerful story. It explains why a single foundation model, pretrained at scale, can be adapted to translation, coding, and tutoring alike — and why the next rungs talk about turning such models into tool-using agents.

But hold the line on what scaling does *not* prove. The smooth curve tracks next-token loss, which is not the same as the messy real-world abilities we actually care about — those climb more jaggedly, and low loss does not abolish hallucination or guarantee sound reasoning. More pointedly, nothing in scaling laws shows that piling on compute is the road to general intelligence. It is one observed trend over a finite range, leaning on a finite supply of data and energy. Extrapolating it straight to human-level AI is a hopeful guess, not a result.

  1. Treat a scaling-law curve as a forecast within a tested range — useful for planning, not a promise about the next order of magnitude.
  2. When a new ability looks "emergent," check the metric before believing the cliff — ask whether partial credit smooths it into a slope.
  3. Read the bitter lesson as a bias toward general, scalable methods — and remember scale costs money, energy, and finite data.