Scaling Laws — Technologies & Tricks

Updated July 2026 with 2025–2026 SOTA additions — new entries marked ★. Algorithm names link to their papers (arXiv / project page).

April 2026 · Version 1.0


Contents

  1. What Are Scaling Laws?
  2. Pre-Chinchilla: Hestness and Kaplan
  3. Chinchilla Scaling Laws
  4. Beyond Chinchilla: Over-Training
  5. Per-Axis Scaling
  6. Inference-Time Scaling Laws
  7. MoE Scaling Laws
  8. Vision Scaling Laws
  9. Multimodal Scaling Laws
  10. Reasoning / RL Scaling
  11. Long-Context Scaling
  12. Distillation Scaling
  13. Data Scaling Laws
  14. Hyperparameter Scaling: µP
  15. Capability Emergence
  16. Compute and Cost Scaling
  17. Practical Allocation Decisions
  18. Diffusion / Generative Scaling
  19. Robotics / VLA Scaling
  20. Frontier 2025–2026 Trends
  21. Production Stack 2026

1. What Are Scaling Laws?

1.1 The basic claim

Empirical relationships between model performance and the inputs that shape it (parameters, data, compute).

Performance is typically a smooth power-law function:

\[L(N) = L_\infty + \left(\frac{N_c}{N}\right)^{\alpha},\]

where \(L\) is loss, \(N\) is parameters, \(L_\infty\) is irreducible loss, \(\alpha\) is the scaling exponent.

1.2 Why scaling laws matter

1.3 The three primary scaling axes

  1. Parameters (N): model size.
  2. Data (D): tokens / examples.
  3. Compute (\(C\)): FLOPs.
  4. Plus emerging: Inference compute.

1.4 Power law form

\[L = A \cdot X^{-\alpha} + L_\infty.\]

\(\alpha\): scaling exponent (typically 0.05–0.5). \(L_\infty\): irreducible loss (Bayes loss).

1.5 Why power laws?

Empirical observation; exact theoretical justification disputed. Possible mechanisms:

1.6 The 2026 lesson

Key

Frontier model design is now driven by scaling-law math: Chinchilla-optimal for training compute, Snell-style inference-compute scaling for capability, µP for hyperparameter transfer, and native sparse / MoE for active-vs-total parameter trade-offs. Every principal-level model design decision is grounded in these.

2. Pre-Chinchilla: Hestness and Kaplan

2.1 Hestness et al. (2017)

Earliest systematic study. Power-law improvement of test loss with dataset size across translation, character / word LMs, image classification, speech.

\[\epsilon(D) \propto D^{-\beta}.\]

Established that scaling laws are universal across domains.

2.2 Kaplan et al. (OpenAI 2020)

Foundational LLM scaling-laws paper. Established for autoregressive Transformers:

Key

\[L(N) = (N_c/N)^{\alpha_N}, \quad L(D) = (D_c/D)^{\alpha_D}, \quad L(C) = (C_c/C)^{\alpha_C}.\]

With \(\alpha_N \approx 0.076\), \(\alpha_D \approx 0.095\), \(\alpha_C \approx 0.057\) (the famous numbers).

2.3 The Kaplan compute-optimal recipe

For fixed compute \(C\):

\[N_{\mathrm{opt}}(C) \propto C^{0.73}, \quad D_{\mathrm{opt}}(C) \propto C^{0.27}.\]

Implication: scale parameters faster than data. "GPT-3 spec."

2.4 Why Kaplan's recipe was followed for years

2.5 Limitations of Kaplan

2.6 Other early scaling work

3. Chinchilla Scaling Laws

3.1 Hoffmann et al. (DeepMind 2022)

Re-ran scaling experiments with proper hyperparameter tuning (warmup, batch size, LR schedule).

Found Kaplan was wrong.

3.2 The corrected formula

Key

For compute-optimal training:

\[N_{\mathrm{opt}}(C) \propto C^{0.5}, \quad D_{\mathrm{opt}}(C) \propto C^{0.5}.\]

Scale parameters and data equally.

3.3 The 20 tokens / parameter rule

At compute-optimal allocation:

\[D_{\mathrm{opt}} \approx 20 \cdot N_{\mathrm{opt}}.\]

A 70B-parameter model should be trained on ~1.4T tokens for compute-optimal loss.

3.4 The Chinchilla model itself

70B parameters, 1.4T tokens. Same compute as Gopher (280B, 300B tokens) but outperformed Gopher by significant margin.

3.5 Implications

3.6 Three approaches to fit scaling

Hoffmann et al. used three independent methods:

  1. Fix model size, vary tokens.
  2. Fix tokens, vary model size (IsoFLOP).
  3. Parametric fit to all data.

All agreed: \(\alpha_N \approx \alpha_D \approx 0.5\).

3.7 The Chinchilla loss formula

\[L(N, D) = E + \frac{A}{N^{\alpha}} + \frac{B}{D^{\beta}},\]

\(E \approx 1.69\) (irreducible), \(A \approx 406\), \(B \approx 411\), \(\alpha \approx 0.34\), \(\beta \approx 0.28\).

3.8 Compute approximation

\(C \approx 6ND\). Plug into Chinchilla loss; minimize over \((N, D)\) subject to \(C\). Result: \(N_{\mathrm{opt}} \propto C^{0.5}\), \(D_{\mathrm{opt}} \propto C^{0.5}\).

3.9 Subsequent corrections

4. Beyond Chinchilla: Over-Training

4.1 Why train past Chinchilla-optimal?

Chinchilla minimizes training compute for target loss. Inference is a separate (and often dominant) cost. For models that will be deployed at scale, over-training the smaller model is more efficient.

4.2 Llama 2 / 3 / 4 over-training

Far past Chinchilla-optimal; better inference economics.

4.3 Inference-aware scaling laws

Sardana et al. (Mosaic, 2024): incorporate inference cost into the scaling law:

Total cost = \(C_{\mathrm{train}}\) + \(C_{\mathrm{inference}}\) · users.

For high-volume inference, optimal \(N\) shifts smaller; \(D\) shifts larger.

4.4 Diminishing returns at extreme over-training

After ~1000 tokens / param, gains slow. But still gains over Chinchilla-optimal up to ~2000 tokens / param.

4.5 DeepSeek's revised laws

DeepSeek (2024): suggest data quality matters as much as quantity past a threshold. "20 tokens / param" is not universal; depends on data quality.

4.6 When to over-train

4.7 When NOT to over-train

5. Per-Axis Scaling

5.1 Parameters (N)

\(N\) = total parameter count. For Transformers:

\[N \approx L \cdot (12 d^2 + \text{embedding}),\]

\(L\) layers, \(d\) hidden size. Embedding negligible at scale.

5.2 Data (D)

\(D\) = training tokens. For images: pixels; for video: frame-tokens.

5.3 Compute (\(C\))

\(C\) = total training FLOPs. For Transformers:

\[C \approx 6ND.\]

The factor 6: forward + backward + recomputation.

5.4 Effective FLOPs

With FP8 / FP4 / sparsity, "effective FLOPs" > utilized FLOPs. Scaling laws should compare on utilized FLOPs for fair comparison.

5.5 Tokens-vs-parameters chart

Setting D/N Use case
Kaplan (2020) ~1–3 legacy, suboptimal
Chinchilla (2022) 20 training-compute-optimal
Llama 2 ~280 deployment-optimal
Llama 3 8B ~1875 extreme over-training
DeepSeek-V3 ~380 (active params) MoE setting

5.6 Memory at scale

At fixed compute, memory ~\(N\) (parameters). For training with optimizer states (AdamW): ~\(14N\) bytes (BF16 + FP32 master + Adam \(m\), \(v\)).

★ 2026 SOTA update — Precision / quantization scaling laws

6. Inference-Time Scaling Laws

6.1 The new axis

Compute can be spent at inference, not just training. Different scaling regime; complementary.

6.2 Snell et al. (Stanford 2024)

For a fixed model and task, accuracy improves with inference compute. Specifically: a 14× smaller model with optimal inference compute can match a larger model.

6.3 Inference-compute mechanisms

6.4 Best-of-N scaling

\[\mathbb{E}\left[\max_{i \le N} r_i\right] \approx \mu + \sigma \sqrt{2 \ln N}.\]

Diminishing returns; Pareto with \(N \in [8, 64]\).

6.5 Optimal allocation per-difficulty

6.6 The o1 / R1 implication

6.7 The economic shift

6.8 Inference scaling laws (research)

Recent work (DeepMind, OpenAI, Stanford):

★ 2026 SOTA update — Repeated-sampling power-law mechanism

7. MoE Scaling Laws

7.1 Why MoE scaling differs

MoE: total parameters \(N_{\mathrm{total}}\) vs active parameters \(N_{\mathrm{active}}\) per token.

7.2 Effective parameter ratio

effective \(\approx N_{\mathrm{active}} \cdot \text{ratio}(N_{\mathrm{total}}/N_{\mathrm{active}})\).

Where ratio > 1, increasing with sparsity ratio.

7.3 DeepSeek MoE scaling laws

7.4 Compute-quality Pareto

At fixed FLOPs (per token), MoE outperforms dense:

7.5 Optimal expert count

7.6 Top-k scaling

7.7 Compute-optimal MoE Chinchilla-style

For MoE, compute-optimal \(D/N_{\mathrm{active}} \approx 30\)\(50\) (vs 20 for dense). MoE benefits from over-training the active params more.

7.8 Total tokens for frontier MoE

Confirms over-training for MoE actives.

★ 2026 SOTA update — Optimal MoE sparsity laws

8. Vision Scaling Laws

8.1 ViT scaling

ViT-22B (Dehghani et al. 2023): demonstrated ViTs scale cleanly with proper training. Key tricks: parallel attn+MLP, QK-LN, no biases.

8.2 DINOv2 / DINOv3 scaling

8.3 CLIP / SigLIP scaling

8.4 SAM scaling

SAM: ViT-B/L/H. Performance scales with model size + data scale (1.1B masks). SA-1B dataset critical.

8.5 ImageNet-scale saturation

Most architectures saturate ImageNet at modest scale. JFT-300M and JFT-3B (Google internal) needed for true scaling tests.

8.6 Pretrain-vs-finetune scaling

Pretrain compute \(\to\) better features. Finetune is small fraction of pretrain compute. Standard pattern: 100–1000× more pretrain than fine-tune compute.

8.7 Visual tokenizer scaling

9. Multimodal Scaling Laws

9.1 VLM scaling

9.2 Diffusion scaling laws (Peebles & Xie 2023)

DiT scaling: FID power-law-decreases with model size + training compute. Diffusion Transformers scale predictably, like LLMs.

9.3 Video diffusion scaling

9.4 Imagen / Parti scaling

Imagen showed power-law improvement with model size + diffusion training. T5-XXL text encoder with smaller image model beats large image + small text. Text encoder matters.

9.5 DPO / RL scaling

9.6 Emergent multimodal capabilities

Compositional reasoning, OCR-in-the-wild, long video understanding emerge at frontier scale (GPT-4o, Gemini 2.5, Claude Opus). Smooth as scale scales; emergence may be threshold artifact (Schaeffer 2023).

10. Reasoning / RL Scaling

10.1 R1-Zero emergent reasoning

Pure RL on base LLM with verifiable rewards leads to spontaneous long CoT. Requires base model > ~7B for emergence.

10.2 Training compute for reasoning

10.3 Inference compute scales reasoning

At fixed RL training: more inference compute (long CoT, search) further improves. Multiplicative interaction with training compute.

10.4 Distillation of reasoning

R1 traces \(\to\) smaller models. Smaller distilled models match larger non-reasoning at modest scale.

10.5 Process Reward Model scaling

10.6 Open scaling questions

★ 2026 SOTA update — Predictable RL-compute scaling

11. Long-Context Scaling

11.1 Cost vs context length

Quadratic attention: \(O(n^2)\) FLOPs + memory. Long context bites quickly.

11.2 Linear attention scaling

Mamba / RetNet / RWKV: \(O(n)\) scaling. Better long-horizon economics; quality gap at moderate context.

11.3 Position-extrapolation scaling

11.4 Long-context training scaling

11.5 Inference-time long-context scaling

12. Distillation Scaling

12.1 Teacher-student gap

Student approaches teacher quality with:

12.2 Distillation compute economy

Distillation typically requires ~0.1–1× pretraining compute of student. Cheaper than pretraining from scratch by \(10\times\).

12.3 R1-Distill scaling

12.4 Born-Again students

Same architecture as teacher, distilled. Often slightly better than teacher (2–3% improvement). Suggests room for distillation-driven gains.

12.5 Sample efficiency

Distillation ~10× more sample-efficient than from-scratch training (for matched final quality).

★ 2026 SOTA update — Distillation scaling law

13. Data Scaling Laws

13.1 Data quantity scaling

\[\text{Power-law: } L \propto D^{-\alpha}. \text{ Diminishing returns.}\]

13.2 Data quality scaling (FineWeb-Edu evidence)

High-quality data ~5–10× more efficient than naive web data. FineWeb-Edu showed: classifier-filtered "educational" web outperforms more raw data at fewer tokens.

13.3 Repeated data

Training on same data multiple epochs: repeated data ~0.6× as effective per repetition. After ~4 epochs, marginal benefit.

13.4 Data + parameters compound

Scaling laws are joint: \(L(N, D)\). Improvements compound; can't fix one and ignore the other.

13.5 Synthetic data scaling

13.6 Multi-modal data scaling

13.7 Open data limits

★ 2026 SOTA update — Optimal data-mixture scaling laws

14. Hyperparameter Scaling: µP

14.1 The hyperparameter problem

Optimal hyperparameters (LR, batch size, etc.) change with model scale. Tuning at frontier is impossible.

14.2 µP (Maximal Update Parameterization, Yang et al.)

Width-aware parameterization: scale (a) initialization variance, (b) learning rate, (c) optional update multipliers as functions of fan-in width.

Key

Result: optimal hyperparameters chosen on a 200M proxy model carry over almost exactly to a 7B / 70B target. Saves 99% of GPU budget for sweeps.

14.3 µTransfer

The practical transfer recipe:

  1. Choose µP-parameterized base model.
  2. Sweep hyperparameters at narrow / small width.
  3. Apply same hyperparameters to wide / large width.

14.4 Why µP works

At infinite width, certain quantities (feature norms, gradient norms) become well-defined limits. µP keeps them invariant across widths \(\to\) optimal hyperparameters don't drift.

14.5 Variants and extensions

14.6 Production usage

14.7 LR scaling

Without µP: empirical \(\eta \propto B/L\) where \(B\) is batch, \(L\) depends on width. Brittle.

14.8 Batch size scaling

15. Capability Emergence

15.1 The emergent abilities claim

Wei et al. 2022: certain LLM capabilities (multi-step arithmetic, instruction following, certain reasoning) appear "suddenly" at a critical scale.

15.2 Schaeffer 2023: emergence may be a mirage

Some emergent abilities are artifacts of discontinuous metrics (exact-match accuracy). Underlying continuous metrics (loss, partial-credit) scale smoothly. "Emergence" often disappears with proper measurement.

15.3 What actually scales smoothly

15.4 What may genuinely emerge

Even these may be smooth on the right metric.

15.5 Implications for roadmaps

15.6 The frontier scaling hypothesis

16. Compute and Cost Scaling

16.1 Compute as money

16.2 Hardware utilization

Utilized FLOPs \(\ne\) peak FLOPs. Modern frontier runs achieve 40–55% of peak. Improvements (FlashAttention 3, Megatron-Core) raise utilization.

16.3 Effective FLOP budget growth

16.4 Stargate / similar mega-clusters

16.5 Energy scaling

16.6 Inference cost scaling

17. Practical Allocation Decisions

17.1 Frontier model planning

Given budget \(C\):

  1. Choose \(N\), \(D\) via Chinchilla or inference-aware.
  2. Choose dense vs MoE.
  3. Choose architecture (depth, width, heads).
  4. µP-search hyperparameters at small.
  5. Plan training schedule.

17.2 Token-budget allocation

For a fixed \(D\) tokens:

17.3 When to scale parameters vs data

17.4 Architecture choice

17.5 Test-time compute investment

17.6 Decision matrix

Goal Strategy Notes
Frontier capability MoE + over-train + long-CoT RL DeepSeek-V3 / R1
Best deploy economics Dense small + over-train Llama 3 8B
Niche specialist Distill from frontier Phi pattern
Long context Linear attn or RoPE+YaRN varies
Reasoning RL on verifiable + inference-time scaling R1 pattern
Image gen DiT + RF + distill SD3 / FLUX
Multimodal Native multimodal + scale GPT-5 / Gemini 2.5

18. Diffusion / Generative Scaling

18.1 DiT scaling (Peebles & Xie 2023)

FID scales as power-law in DiT model size + training compute. Same Transformer-style scaling.

18.2 Compute-optimal diffusion

For diffusion, the compute-optimal ratio differs from LLMs. Empirically \(D/N \approx 5\)\(10\) for image diffusion.

18.3 Cascaded vs single-stage

Imagen's cascade (64 \(\to\) 256 \(\to\) 1024) trades training compute for inference compute. Stable Cascade follows similar logic.

18.4 Latent diffusion scaling

SD's latent space (\(f = 8\)) reduces compute ~64×. Allows larger effective models for fixed compute.

18.5 Video diffusion scaling

18.6 Distillation scaling

19. Robotics / VLA Scaling

19.1 Open-X-Embodiment scaling

19.2 π0-class scaling

19.3 Sim-to-real scaling

19.4 Cross-embodiment transfer

20.1 Pretraining plateau?

20.2 Inference compute as the new axis

20.3 Data quality > data quantity

20.4 MoE + over-training dominant

DeepSeek-V3 / Llama 4 / Qwen 3 frontier models all use MoE + over-trained actives. Standard pattern.

20.5 Multimodal scaling

Native multimodal (Chameleon / Gemini 2.5 / GPT-5) scales better than adapter-style at frontier.

20.6 Test-time scaling laws

20.7 Data exhaustion concerns

20.8 Compute scaling

20.9 Open research questions

21. Production Stack 2026

Use case Scaling principle Example
LLM frontier (training) MoE + Chinchilla-overshoot + µP DeepSeek-V3 (671B/37B)
LLM deploy economics Dense small + extreme over-train Llama 3 8B (15T tokens)
LLM reasoning RL + verifiable rewards + inference-time scaling DeepSeek-R1
Long-context LLM \(O(n)\) attn or RoPE-YaRN + sparse Mamba / Llama-3.1-128k
Image diffusion DiT scaling + flow matching + distill SD3.5 / FLUX
Video gen Causal 3D VAE + spatiotemporal MM-DiT + scale Sora 2 / Hunyuan Video
Vision encoder DINOv3 7B + gram-matching loss DINOv3
VLM frontier Native multimodal + scale + RL GPT-5 / Gemini 2.5
VLA / robotics π0 FM head + cross-embodiment scaling π0 / GR00T
Hyperparameter sweep µP + small-scale proxy Mosaic / Cerebras pattern
Architecture choice Compute-optimal MoE vs dense dataset-dependent
Test-time compute PRM + search + long-CoT rStar-Math / Mulberry

Appendix A: Twenty-Five Things to Know

  1. Scaling laws are empirical power laws: \(L = A X^{-\alpha} + L_\infty\).
  2. Kaplan (2020): scale params faster than data; \(\alpha_N = 0.076\).
  3. Kaplan was wrong; Chinchilla (2022) corrected.
  4. Chinchilla rule: 20 tokens per parameter at compute-optimal.
  5. \(C \approx 6ND\) for Transformer training.
  6. Chinchilla loss: \(L = E + A/N^{\alpha} + B/D^{\beta}\).
  7. \(\alpha \approx 0.34\), \(\beta \approx 0.28\), \(E \approx 1.69\).
  8. Llama 3 8B: 15T tokens / 8B = 1875; over-trained.
  9. Inference-aware scaling shifts smaller \(N\), more \(D\).
  10. Snell et al.: 14× smaller model with optimal test-time compute matches larger.
  11. Best-of-\(N\): \(\mathbb{E}[\max] \approx \mu + \sigma \sqrt{2 \ln N}\).
  12. MoE: \(L\) scales with \(N_{\mathrm{active}}\) at fixed data.
  13. Optimal MoE sparsity: \(N_{\mathrm{total}}/N_{\mathrm{active}} \in [10, 30]\).
  14. DeepSeek-V3: 671B total / 37B active / 14T tokens.
  15. ViT-22B: parallel attn+MLP, QK-LN, no biases.
  16. DiT scaling: power-law in FID with model + compute.
  17. Distillation: ~0.1×–1× pretraining compute of student.
  18. Born-Again students often beat teacher.
  19. FineWeb-Edu evidence: data quality ~5–10× more efficient.
  20. Repeated data: ~0.6× effective per epoch; 4 epochs cap.
  21. µP: width-aware parameterization for HP transfer.
  22. Schaeffer: emergent abilities may be metric artifact.
  23. Hardware utilization: typically 40–55% of peak.
  24. Inference cost often > 10× training cost over model lifetime.
  25. Multi-axis scaling: pretrain + post-train + inference all matter.

Appendix B: Decision Tree — "How to Scale?"

  1. Frontier-quality model from scratch? \(\to\) MoE + Chinchilla-overshoot + µP + extreme compute ($~10M+).

  2. Best deploy economics? \(\to\) Dense small + extreme over-train (Llama 3 8B pattern).

  3. Want reasoning? \(\to\) Pretrain + cold-start SFT + GRPO with verifiable rewards.

  4. Cheap reasoning at small scale? \(\to\) Distill from R1-class (R1-Distill-Qwen-7B).

  5. Long context? \(\to\) Linear attn (Mamba) or RoPE+YaRN + ring attention.

  6. Image generation? \(\to\) DiT + flow matching + distillation (SD3 / FLUX pattern).

  7. Video generation? \(\to\) Causal 3D VAE + spatiotemporal MM-DiT; lots of compute.

  8. Vision encoder? \(\to\) DINOv3-style scale + gram-matching loss.

  9. VLM? \(\to\) Native multimodal + scale + RL post-training.

  10. Hyperparameter tuning at scale? \(\to\) µP + small-scale proxy sweep.

  11. Inference-time compute? \(\to\) PRM + search + RL-trained long CoT.

  12. Specialist model (medical / legal / code)? \(\to\) Distill + LoRA fine-tune from frontier base.

Appendix C: Year-by-Year Scaling Milestones