6.1.3 · D5Scaling & Efficient Architectures

Question bank — Emergent abilities in large models

2,072 words9 min readBack to topic

True or false — justify

Every "true/false" below is a trap: the surface reading is tempting, the correct reading needs a reason.

The training loss curve has a kink at the emergence threshold .
False. Loss follows a smooth power law with no discontinuity; the kink lives only in the downstream metric , which is the smooth-loss-composed-with-exponentiation transform shown above.
Emergence is a true mathematical discontinuity in capability.
False (usually). Under the picture accuracy is a continuous function of — it is sharp but smooth. A genuine discontinuity would require a jump in the underlying loss, which we do not observe.
If a metric shows a sudden jump, the model must have acquired a new internal skill at that scale.
False. The jump can be an artifact of a harsh, thresholded metric (exact-match). The same model measured by edit distance or per-token log-likelihood often improves smoothly — the "new skill" was rising continuously the whole time.
Choosing exact-match vs. a per-token metric changes the model, not just the picture.
False. The model is identical; only the lens differs. The smooth aggregate metric is (expected number of correct tokens out of , linear in ), while is sharp — same weights, two lenses. (If you want the smooth metric on a scale, use the per-token fraction itself.)
Every capability of a large model emerges suddenly.
False. Emergence is task- and metric-specific: only high- all-or-nothing metrics manufacture the jump. A short- task, or the same task read by a per-token metric, improves smoothly with no leap.
More scale always improves every task.
False. On Inverse scaling tasks accuracy falls as grows: the model latches onto a superficially-correct pattern (e.g. copying a memorized surface form) that a bigger model reproduces more confidently, so the harmful behavior strengthens rather than washing out. "Bigger is better" is a trend, not a law.
Small-model results are worthless because they sit at chance.
False. Exact-match sits at chance because when is modest, but the underlying (and its smooth surrogates: edit distance, per-token log-likelihood) is already moving. Fit the trend of the smooth metric on small models and you can forecast large-model skill — the key early-warning signal.
Emergence contradicts scaling laws.
False. No contradiction: loss obeys the smooth law , and is that smooth loss pushed through exponentiation. The smoothness and the sharpness are two views of one continuous object.
Grokking and emergence are the same phenomenon.
False. Grokking (delayed generalization) is delayed generalization over training time at fixed scale; emergence is a jump across model scale . Related in spirit (sharp transition) but on different axes.
Chain-of-thought prompting always helps.
False. Chain-of-thought prompting hurts small models — the extra intermediate steps add fragile factors, so shrinks — and only helps once per-step reliability is high enough that decomposition buys more than it costs.

Spot the error

Each statement contains one flawed step — name the mechanism it violates, then repair it.

"To measure a smooth surrogate, just watch when exact-match crosses 50%."
The error is measuring the harsh metric to detect smooth progress — self-defeating. The actionable surrogates are computed before thresholding: (1) per-token log-likelihood (average token log-prob, exactly what cross-entropy already tracks); (2) token edit distance between output and target; (3) expected correct-token fraction . Log and plot these against — they move on small models where exact-match is still flat.
" is exact, so from an observed accuracy I can always back out the true ."
The error is assuming the model holds, which requires tokens to be independent and equally reliable. It breaks when errors are correlated (one confusion derails a whole span) or when varies token-to-token; then the effective exponent is not and the inversion is wrong. Detect the breakdown by checking whether measured accuracy at several lengths actually falls off geometrically — if it doesn't, independence has failed.
"Since emergence appears at compute , we should report only and ignore and ."
The error is collapsing three axes into one. ties params and tokens together, but Compute-optimal training shows the split between and matters; the same with different ratios gives different loss and thus different capabilities.
"Because is 'per-token correctness', it is a fixed constant of the model."
The error is treating as scale- and length-invariant. In truth rises with scale, and the effective can also drift with position or context length (later tokens condition on possibly-wrong earlier ones). The single-number story is a first-order idealization; watch for length-dependent when a task's accuracy-vs- curve bends away from a clean geometric decay.
"The mirage explanation proves emergence is fake and we can ignore it."
The error is over-reading "mirage." Schaeffer et al. show the discontinuity may be a metric artifact — but the sharp, practically-relevant swing (near-0 to high accuracy over a narrow scale range) is real and still demands forecasting and safety attention.
"A task with many serial sub-skills succeeds with probability for steps."
The error is adding instead of chaining. Independent serial steps compound multiplicatively: success , not . That multiplication is exactly what makes composition fragile and emergence-prone.

Why questions

Answer the mechanism, not just the fact.

Why does larger make the emergence transition sharper?
Raising a fixed to a larger power drives toward faster for small while leaving it near for , so the band of over which climbs from ~0 to ~1 narrows — pure geometry of exponentiation.
Why does per-token log-likelihood look smooth when exact-match looks emergent?
Log-likelihood averages a continuous per-token quantity (no all-or-nothing threshold), so it tracks the smooth loss directly; exact-match applies an -fold AND that amplifies tiny residuals into a step.
Why is multi-step reasoning especially prone to apparent emergence?
Each step is a fragile factor; overall success . Until crosses a knee, adding steps lowers success, so the composite metric stays pinned near chance and then leaps once is high enough.
Why does CoT flip from harmful to helpful with scale?
At low the extra intermediate tokens are error-prone, so decomposition multiplies mistakes ( shrinks); once is high, decomposing a hard task into individually-reliable easy steps raises effective reliability and pays off.
Why can't we just extrapolate the accuracy curve to predict emergence?
Because exact-match sits at chance for small — a flat line carries no slope to extrapolate. The information lives in a smooth surrogate (log-likelihood / edit distance); extrapolate that, then push it through the transform.
Why is the analogy to physical phase transitions apt but imperfect?
Apt because both show sharp macroscopic change from smooth microscopic parameters (see Phase transitions in physics); imperfect because a true phase transition is genuinely singular in the thermodynamic limit, whereas emergence is continuous — sharp, not singular.
Why does In-context learning of a new format tend to look emergent?
The model must infer a latent task and apply it consistently across many output tokens — a high-, all-or-nothing metric that only clears once per-token reliability is high enough.

Edge cases

The degenerate and boundary inputs the topic invites you to skip.

What happens to as ?
It collapses to — perfectly smooth. A single-token task shows no emergence at all; the sharpness is entirely a many-token effect.
What if exactly (perfect per-token accuracy)?
for all — length no longer matters. The emergence "engine" only operates strictly between chance and perfection ().
What if per-token errors are correlated, not independent?
The form assumes independence; correlation can make the true curve sharper or softer, and the effective exponent is no longer . Detect it by measuring accuracy at several lengths and checking whether it decays geometrically — deviation signals correlated errors.
What about a task where random guessing already scores high (large chance baseline)?
The "pinned at chance" floor is then high, so there is little headroom for a dramatic jump — emergence looks muted. Chance level sets the floor the curve rises from.
What if we measure a continuous metric and still see a sharp jump?
Then the sharpness is not a metric artifact — it points toward a genuine capability transition (Explanation 1). The two explanations are distinguished precisely by re-measuring with a smooth metric.
Can a task show emergence on one metric and inverse scaling on another?
Yes. The model's smooth internal change gets read differently by different metrics; a harsh metric may show a late jump while a pathology-sensitive metric shows worsening (Inverse scaling) over some range.
What is the limiting behavior of as under ?
As , , so loss ; if is also large, and . Compute alone can't reach if data is bottlenecked — a Compute-optimal training point.

Recall One-line summary to keep

Emergence is amplification, not discontinuity: a smooth per-token gain , run through the harsh metric, looks like a switch flipped. Change the lens to a per-token surrogate, and the mirage often dissolves.