Summary (Overview)
- Proposes a new closed-form scaling law that extends Chinchilla's law to the data-constrained, multi-epoch regime by decomposing loss into undercapacity, undertraining, and overfitting terms.
- Addresses three structural failures of Chinchilla: lack of baseline saturation (loss diverges as data → 0 instead of saturating at the uninformed baseline ), unreachable overfitting regime (loss strictly decreases in at fixed ), and conflation of total examples seen () with unique examples ().
- Validated on 9 calibration grids spanning 4 architecture families (MLPs, ResNets, Fourier neural operators, transformers) across vision, scientific ML, and language domains, achieving state-of-the-art held-out RMSE on all 10 published LLM grid columns (10 of 10) and 6 of 8 constructed-experiment cells.
- Introduces a cost-aware allocation framework that converts a data-to-compute price ratio into an optimal allocation , recovering Chinchilla's optimum when data is free and shifting toward smaller corpora, more epochs, and smaller models as data grows expensive.
- Reduces to Chinchilla's form in the data-rich, single-epoch limit, making it a strict refinement rather than a replacement.
Introduction and Theoretical Foundation
Background and Motivation
The dominant scaling law in modern ML, Chinchilla's form, was calibrated in a regime where data is abundant and training is single-epoch:
However, many real-world settings face a fundamentally different tradeoff: data is expensive (physics surrogates requiring PDE solvers, expert-labeled medical imaging, RL transitions, LLM finetuning), and practitioners must decide between acquiring more unique data or spending compute to revisit existing data.
Three Structural Failures of Chinchilla
-
No baseline saturation: Loss should be bounded above by (the loss of an uninformed model). Chinchilla has as instead of saturating at .
-
Overfitting unreachable: At fixed , the form is strictly decreasing in , but neural networks with overfit—validation loss can rise with capacity past a point.
-
No compute axis independent of : The form cannot distinguish between total examples seen and unique examples , precluding analysis of multi-epoch training.
Target Limiting Behaviors
The paper enumerates six limiting behaviors that any form in should exhibit (Table 1):
| # | Limit | Expected L | Chinchilla |
|---|---|---|---|
| 1 | ; , finite | fails () | |
| 2 | ; , finite | fails () | |
| 3 | ; , finite | fails | |
| 4 | ; , finite | fails | |
| 5 | ; finite | fails (unreachable) | |
| 6 | jointly | pass |
Methodology
The Proposed Form
Notation: = parameters, = unique training examples, = total training examples seen (counted with repetition).
Three Decomposed Terms
The difficulty is a sum of power laws representing three distinct underperformance phenomena:
- Undercapacity (): The only term that doesn't vanish as and grow. Captures the residual cost of finite model capacity.
- Undertraining (): Decays with total examples seen. At , collapses to Chinchilla's data term .
- Overfitting (): Depends only on capacity and unique-data count . The two-exponent shape allows independent calibration of -scaling and -scaling.
The Saturating Wrapper
The wrapper is a monotone bijection from to with two key properties:
- Small-h linearity: For , , so Eq. (2) reduces at leading order to —recovering Chinchilla-like behavior.
- Large-h saturation: For , and .
Baseline Loss
is determined by the loss type, not fitted:
- Cross-entropy over outcomes: (e.g., for next-token prediction)
- Relative- regression on z-normalized targets: exactly
Experimental Setup
Datasets: MNIST (MLPs), CIFAR-100 (PreActResNets), PDEBench Darcyflow (Fourier Neural Operators), TinyStories (decoder-only transformers), plus 5 published LLM grids (Chinchilla, Muennighoff, Gadre, Porian, Farseer).
Baselines compared: Chinchilla, Muennighoff, M4, BNSL, Farseer, plus 4 ablations of the proposed form.
Fitting: Huber loss on log-residuals with BFGS, multistart random initialization, bootstrap resampling for confidence intervals.
Extrapolation protocols: high-C holdout (predicting expensive runs from cheap ones) and high-D holdout (predicting large-D performance from small-D data), each targeting ~10% of rows held out groupwise.
Empirical Validation / Results
Key Results from Table 2 (held-out RMSE in log space)
high-C holdout (selected columns):
| Form | MNIST | CIFAR-100 | TinyStories | Chinchilla | Farseer |
|---|---|---|---|---|---|
| Chinchilla | 0.332 | 0.156 | 0.173 | 0.024 | 0.028 |
| Muennighoff | 0.333 | 0.151 | 0.095 | 0.024 | 0.028 |
| Farseer | 1.389 | 0.607 | 0.119 | 0.030 | 0.020 |
| Ours (Eq. 2) | 0.127 | 0.081 | 0.184 | 0.007 | 0.008 |
high-D holdout (selected columns):
| Form | MNIST | CIFAR-100 | TinyStories | Chinchilla | Farseer |
|---|---|---|---|---|---|
| Chinchilla | 0.123 | 0.182 | 0.057 | 0.028 | 0.017 |
| Muennighoff | 0.122 | 0.171 | 0.095 | 0.028 | 0.017 |
| Farseer | 1.490 | 0.899 | 0.060 | 0.012 | 0.041 |
| Ours (Eq. 2) | 0.137 | 0.069 | 0.053 | 0.010 | 0.005 |
Headline results:
- State-of-the-art on all 10 external LLM grid columns (both holdout protocols across 5 published grids), averaging 49% lower RMSE than the second-best approach.
- Wins 6 of 8 cells in constructed experiments; underperforms only on high-C TinyStories and high-D MNIST.
- Key insight: Wins extend beyond the multi-epoch, data-constrained regime—4 of 5 published LLM grids are single-epoch and data-unconstrained, yet the form wins every column.
Compute Footprint
- ~206 GPU-hours total on AWS Batch (NVIDIA A10G): MNIST ~46, CIFAR-100 ~14, Darcy ~48, TinyStories ~98.
- Aggregate training compute: ~ FLOPs.
Cost-Aware Allocation Results
The Lagrange first-order condition for budget-constrained optimization:
Illustrative example (Table 3) at fixed budget with Chinchilla exponents :
| data share | |||||
|---|---|---|---|---|---|
| 0 (Chinchilla CO) | 1.0 | 2.14 | 0% | ||
| (web tokens) | 2.7 | 2.14 | 12% | ||
| (licensed corpora) | 80 | 2.30 | 63% | ||
| (expert/sim) | 1,250 | 2.66 | 86% |
Increasing by 1000× shrinks by two orders of magnitude, shrinks by ~20×, and walks from 1 to ~1,250 epochs.
Theoretical and Practical Implications
Theoretical Contributions
-
First explicit closed-form overfitting term in parametric scaling laws: the term wrapped in has no analog in prior work.
-
Structural refinement of Chinchilla: The form reduces to Chinchilla in the small- single-epoch limit, making it a strict generalization rather than an alternative formulation.
-
U-shape behavior: At fixed , the interplay between overfitting () and undercapacity () produces an interior minimum in as , implying that for finite data, there's a model size beyond which best achievable performance degrades—a structural feature absent from other parametric forms.
Practical Implications
-
Cost-aware allocation: A calibrated converts a single price ratio into a concrete cost-optimal allocation —the data-free limit recovers Chinchilla compute-optimal, and as data grows expensive, the allocation shifts to smaller corpora, more epochs, and smaller models.
-
Broad applicability: The form works across vision, scientific ML, and language domains, spanning four architecture families, demonstrating it's not architecture-specific.
-
Extrapolation reliability: State-of-the-art extrapolation to higher compute and larger unique data than seen at fit time—the primary practical use of a scaling law.
Conclusion
Main Takeaways
The paper introduces a closed-form scaling law that:
- Satisfies six target limiting behaviors, five of which Chinchilla violates
- Reduces to Chinchilla in the data-rich single-epoch limit
- Includes an explicit closed-form overfitting term with no analog in prior parametric scaling laws
- Wins 16 of 18 high-C and high-D extrapolation cells across nine calibration grids
Future Directions
-
One-sided log-space prior on : Remediates optimistic irreducible-loss estimates in far-compute extrapolation (recovers SOTA on Farseer and TinyStories high-C); broader applicability across forms and datasets is future work.
-
Structural fix for low-D regime: The cross term over-extrapolates from small-D extreme overfitting regimes; a structural fix keeping the term well-behaved across the full range is future work.
-
Beyond in-distribution validation loss: Downstream task performance, task-level metrics, emergent capabilities, and out-of-distribution behavior are separate layers in the scaling-law stack and out of scope.
-
Double descent: The form is asymptotic and smooth, so it doesn't predict the peak at ; capturing this structure is left to future work.
Key Limitations
- In-distribution validation loss only: Doesn't address downstream task scaling or OOD behavior.
- Universality of form, not of fits: Fitted constants are recipe-dependent and not portable across settings.
- Optimistic in far compute extrapolation: The saturating wrapper makes identified only when observations approach the asymptote.
Related papers
- RestoreKV: Recovering Full-Cache Behavior Under Aggressive Query-Agnostic KV Cache Eviction
RestoreKV generates a small, context-conditioned restore cache via LoRA-adapted tokens to complement evicted KV pairs, boosting RULER accuracy by up to 35 points at 5% budget with negligible overhead.
- Priming: Hybrid State Space Models From Pre-trained Transformers
Priming initializes hybrid state-space models from pre-trained Transformers using less than 0.5% of the token budget, yielding faster, lighter models that outperform source Transformers on reasoning benchmarks.
- Phantom Gains: Auditing Self-Improvement Against a Measured Null
Transition-level auditing of LLM self-improvement requires measured nulls for every statistic; without them, a frozen model falsely appears to expand at 0.280.