capacity-bottleneck-inverts-between-pretraining-and-alignment

IN derived (depth 3)

Created 2026-06-21T10:10:05+00:00 · Reviewed 2026-06-21T14:41:08+00:00

The transformer's known over-parameterization at the pretraining level (compression to 60% of parameters with 95% performance retained) combined with alignment's inverse priority (scaling reward model size matters more than data volume) reveals a systematic inversion: data volume is the bottleneck for pretraining while model capacity is the bottleneck for alignment.

Summary

Each phase of building a large model hits a different wall: pretraining runs out of data before it runs out of model capacity, while the alignment step runs out of model capacity before it runs out of training examples. This means compute and resource budgets should be allocated very differently across the pipeline, and a scaling strategy that works for one phase will actively backfire in the other.

Justifications

SL — Over-parameterization at pretraining confirms that capacity is the non-binding constraint there, while alignment research independently shows capacity IS the binding constraint at alignment

Antecedents (all must be IN):

  • IN pretraining-and-alignment-have-inverted-scaling-priorities — Pretraining and alignment exhibit inverted scaling priorities: in pretraining, data volume outweighs parameter count (Chinchilla, Llama 1 13B beating GPT-3 175B), while in RLHF reward modeling, scaling model size is more effective than scaling comparison dataset size — suggesting different phases of the training pipeline are bottlenecked by fundamentally different resources.
  • IN transformer-is-mature-and-over-parameterized — The transformer architecture has reached maturity: post-2017 refinements (Pre-LN, SwiGLU, RMSNorm, GQA) improve stability and efficiency without changing fundamentals, while compression evidence (95% performance at 60% parameters, cross-layer sharing, weight tying) reveals substantial redundancy — future gains come from scaling strategy and efficiency engineering, not architectural revolution.

Dependents

These beliefs depend on this one: