AIAny

Scaling Laws for Neural Language Models

Demonstrated that language model loss falls as a smooth power law in model size, data, and compute across more than seven orders of magnitude — turning "make it bigger" from a hunch into a budget you can plan, and justifying the GPT-3 scale-up.

Introduction

Most deep learning progress used to read like a sequence of lucky architectural bets. The quieter, more consequential claim here is that for language models the gains are so regular you can write them down as equations. Cross-entropy loss falls as a power law in three knobs — parameters, data, and compute — with the same trend holding across more than seven orders of magnitude. Once performance is that predictable, the central question stops being "what clever model should we build?" and becomes "given a fixed compute budget, how should we spend it?"

Key Findings
  • Architecture matters less than scale. Within a wide range, width-versus-depth and other shape choices barely move the loss; the three scale variables dominate. That is why the field's energy shifted from architecture search toward simply scaling a known-good design.
  • Bigger models are more sample-efficient. Large models reach a given loss after seeing fewer tokens, so the compute-optimal recipe is to train a very large model on a relatively modest amount of data — and to stop well before convergence rather than squeezing every epoch.
  • You can predict before you train. The fitted laws let you extrapolate the loss of a model far larger than anything you have run, which is precisely what made committing a vast compute budget to GPT-3 a calculated bet instead of a gamble.
Great Fit / When to Skip

Great fit if you want the empirical backbone behind the entire scaling era, or you need to reason about compute-optimal allocation rather than chase benchmarks. Skip, or read alongside newer work, if you want the final word on optimal data-versus-parameter ratios: Chinchilla (2022) later argued these laws under-trained on data, shifting the compute-optimal frontier toward more tokens. Read this as the foundation that opened the question, not the closed answer.

Information

  • Websitear5iv.labs.arxiv.org
  • OrganizationsOpenAI, Johns Hopkins University
  • AuthorsJared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, Dario Amodei
  • Published date2020/01/23

More Items

Transfers RL-induced policy shifts from a smaller 'weak' teacher to a stronger target by using the teacher's post-/pre-RL log-ratio as a dense implicit reward applied on the student's on-policy states. Enables reuse of RL supervision without running RL rollouts on the target, improving sample/time efficiency.

Introduces KronQ, a post-training quantization framework that incorporates gradient covariance via a Kronecker‑factored Hessian to guide input/output weight rotations and sensitivity-driven mixed-precision allocation. Demonstrates stable 2-bit weight-only quantization on LLaMA-3-70B (7.93 PPL).

Explores unsupervised visual pretraining on visually rich documents to improve language-model intelligence; shows visual-pretrained models outperform text-only counterparts on the same corpora. Key aspects: direct use of images/layouts (no OCR-only pipeline), scalable across backbones and benchmarks.