Emergence is the most quoted and least examined word in the scaling literature: the idea that a large model suddenly acquires an ability its smaller siblings simply did not have, as if a switch flipped past some critical size. The plots are dramatic — a flat line near chance, then a near-vertical climb. But a flat line followed by a cliff can mean two very different things: the model changed discontinuously, or the ruler we used to measure it is discontinuous while the model improved smoothly all along. This piece takes the critical view. We derive why a nonlinear metric can manufacture a cliff out of a smooth curve, work a concrete example, look at the experiments that reframed the debate, separate what the critique does and does not claim, connect it to grokking, and draw out what honest measurement means for small CPU-hosted models.

The claim: abilities that switch on at scale

The canonical statement (Wei et al., 2022) is that an ability is emergent if it is not present in smaller models but is present in larger ones — and, crucially, that its appearance is not predictable by extrapolating the performance of the small models. On tasks like multi-step arithmetic, word unscrambling, or certain reasoning benchmarks, accuracy sits at chance across several orders of magnitude of scale and then shoots up once the model crosses some parameter or compute threshold N*.

Written as a curve, the claim is that capability C(N) against log-scale N looks like a step function: C(N) ≈ 0 for N < N*, then a sharp rise. If true, this is strategically enormous — it means you cannot see a capability coming, so you must simply build bigger and hope. That ‘you cannot see it coming’ part is exactly what the critical literature challenges.

Advertisement

The mathematical shape of an emergence curve

Two quantities are in play, and conflating them is the whole trap. The first is the model’s underlying quality, best captured by the smooth, predictable pre-training loss — per-token cross-entropy, which falls with scale as a power law L(N) ≈ L_∞ + (N_c / N)^α. This curve has no cliffs; it is the well-behaved object scaling laws describe.

The second is the downstream metric we report on a task — exact-match accuracy, multiple-choice accuracy, BLEU. That metric is some function M of the underlying quality: score(N) = M(L(N)). If M is smooth and roughly linear, score(N) inherits the smooth shape of L(N). But if M is sharply nonlinear or discontinuous — near-zero over a wide range of L and then rising steeply — then even a perfectly smooth L(N) produces a score(N) with a cliff. The emergence is in M, not necessarily in the model.

The mirage hypothesis: the ruler, not the model

This is the core of the critical position, argued most sharply by Schaeffer, Miranda, and Koyejo (2023) in ‘Are Emergent Abilities of Large Language Models a Mirage?’ Their claim is not that scaling does nothing — it is that the sharpness and unpredictability that make an ability look emergent are, in many documented cases, an artifact of the researcher’s choice of metric rather than a property of the model.

The argument has a testable structure. If emergence is a metric artifact, then (1) apparent emergence should cluster on discontinuous metrics like exact-match and multiple-choice accuracy; (2) swapping to a linear, continuous metric on the very same model checkpoints should turn the cliff into a smooth ramp; and (3) increasing the resolution of the test set (more examples, finer scoring) should reveal steady sub-threshold progress that a coarse metric rounds to zero. All three predictions can be checked against existing model families — and they largely hold.

Worked example: how exact-match manufactures a cliff

Take a task that requires emitting a sequence of n tokens all correctly — say a 5-digit arithmetic answer, scored by exact string match. Suppose per-token accuracy p(N) improves smoothly with scale. Because exact-match demands every token right, the reported score is p^n (assuming roughly independent token errors). That single exponent is enough to fabricate a cliff:

per-token pexact-match p^5looks like…
0.300.002chance / ‘no ability’
0.500.031still near zero
0.700.168‘starting to emerge’
0.900.590‘sudden’ capability
0.950.774‘mastered’

The left column marches up in even steps; the right column stays pinned near zero and then leaps. Nothing discontinuous happened to the model — the (·)^5 did all the theatrical work. Longer target sequences (larger n) make the cliff look sharper still. Treat p^n as intuition rather than gospel: real token errors are correlated, not independent, which can make the true curve gentler or sharper — but the qualitative lesson, that a harsh nonlinear metric fabricates sharpness, holds regardless.

Discontinuous metrics versus linear metrics

The distinction that matters is whether a metric gives partial credit. Discontinuous metrics do not: exact-match, multiple-choice accuracy (an argmax that is right or wrong), and pass/fail unit tests all collapse a continuum of model quality into a hard threshold. A model that is ‘almost right’ scores identically to one that is hopeless, so improvement stays invisible until it crosses the finish line all at once.

Linear or continuous metrics reward getting closer: per-token accuracy, token edit distance, log-likelihood of the correct answer, Brier score. On these, the smooth power-law improvement of the model shows through as a smooth improvement in score. The empirical punchline from the mirage work is that when you re-score the exact same checkpoints on a linear metric, the emergent cliff usually flattens into an unremarkable ramp — and, symmetrically, that you can induce apparent emergence on a boringly smooth task simply by re-scoring it with a harsh nonlinear metric. The phenomenon tracks the ruler, not the task.

What the critique does not claim

It is easy to over-read the mirage result into ‘emergence is fake, scaling buys nothing new.’ That is not the argument, and the distinction is worth guarding. Scaling demonstrably yields models that solve tasks smaller ones cannot; the smooth loss curve is still going somewhere, and a capability that is at 1% and one at 80% are meaningfully different even if the path between them was continuous.

What the critique narrows is the strong, spooky version of the claim: that capabilities appear discontinuously and unpredictably. If the underlying quality improves smoothly and predictably, then with the right metric you can forecast when a task will cross a usefulness threshold — the surprise was an artifact of measurement, not a fundamental unknowability. Some abilities may still exhibit genuine phase-transition dynamics; the point is that the burden of proof is on showing the sharpness survives a continuous metric.

Advertisement

Grokking: a real sharp transition, in training not scale

The most interesting genuinely-abrupt phenomenon is grokking (Power et al., 2022): on small algorithmic tasks, a network first memorizes the training set (train accuracy → 100%, test accuracy at chance), then, after many more steps of seemingly pointless training, test accuracy jumps suddenly to near-perfect. It is a real discontinuity in generalization — but note the axis: it happens over training time at fixed model size, not over scale.

Grokking is often driven by regularization (weight decay) slowly pushing the network from a memorizing solution to a structured, generalizing one — mechanistic studies find a clean circuit crystallizing internally. So grokking is evidence that sharp transitions can be real, located in weight space, not just a scoring artifact. It is the honest counterweight to the mirage view: some cliffs are in the measurement, but at least one well-studied cliff is genuinely in the model’s internal representation.

How to test whether an ability is genuinely emergent

The critique hands you a practical checklist. First, re-score on a continuous metric: replace exact-match with per-token accuracy or the log-probability the model assigns the correct answer, and see whether the cliff survives. If it flattens, the emergence was in the ruler.

Second, raise the resolution: use enough test examples that a 0.3% success rate is distinguishable from zero, so you can watch sub-threshold progress instead of rounding it away. Third, plot against loss, not just parameter count: if downstream score is a smooth function of pre-training loss, the ‘emergence’ is just the loss power law viewed through a nonlinear lens. Fourth, look for a mechanism: a genuine transition (like grokking) should show a corresponding change inside the network — a circuit forming, a representation reorganizing — not merely a score crossing a threshold. Only an ability that stays sharp under all four tests deserves to be called truly discontinuous.

Predictability and the scaling-law connection

This reconnects emergence to the rest of scaling theory. The Chinchilla-style laws predict pre-training loss L as a smooth function of parameters and tokens with striking accuracy. The mirage argument says downstream capability is, to first order, a deterministic (if nonlinear) function of that same L. Chain the two and downstream performance becomes forecastable: fit score = M(L) from small and mid-size runs, predict L at the target scale, and read off the expected score.

This is exactly what ‘capability forecasting’ efforts attempt, and it is why the debate matters beyond semantics. If abilities were truly unpredictable, safety and capability planning would be guesswork. To the extent the cliffs are metric artifacts riding on a smooth loss, the future is far more legible — you can estimate what a not-yet-trained model will be able to do, which is both reassuring for planning and sobering for anticipating dangerous capabilities before they ship.

Implications for small CPU-hosted models

For anyone running a 1–3B model on a CPU, the mirage framing is liberating. The pessimistic reading of emergence — ‘that ability only turns on at 70B, so a small model simply cannot do it’ — is often an exact-match illusion. Measured with a continuous metric, a small model is usually partially competent: it gets many tokens right, assigns real probability mass to the correct answer, and improves steadily with better data and tuning, even while its exact-match score reads a demoralizing zero.

The practical moves follow directly. Evaluate small models with metrics that expose gradient signal (log-likelihood, per-token accuracy, partial-credit rubrics) so you can actually see fine-tuning working. Reduce the effective n that harsh metrics punish — shorter answers, structured outputs, constrained decoding, or splitting a multi-step task so each step is scored on its own. A capability that looks impossible under exact-match is often one good prompt or one decoding constraint away from usable.

A flat line that suddenly climbs can mean the model changed abruptly — or that a smoothly improving model was measured with a discontinuous ruler. Schaeffer et al. showed that many ‘emergent’ cliffs are the second case: exact-match and multiple-choice accuracy give no partial credit, so a smooth per-token improvement p shows up as a near-flat p^n that leaps only once p is high. Re-score the same checkpoints on a continuous metric and the cliff usually flattens; plotted against pre-training loss, capability is largely a smooth, predictable function of scale. The critique does not say scaling is empty — and grokking proves some sharp transitions are genuinely in the weights, not the metric. For small CPU models the lesson is practical: your model is probably more capable than exact-match admits, so measure with rulers that show partial progress. Before calling anything emergent, make the sharpness survive a continuous metric, a loss-based plot, and a search for a mechanism.