Summary of "Tokens-per-Parameter Coverage Is Critical for Robust LLM Scaling Law Extrapolation"
Summary (Overview)
-
Core finding: Scaling-law fits trained on collinear designs (fixed tokens-per-parameter ratio, ) are inherently ill-conditioned when the exponents governing model size () and data size () are nearly equal, making scale coefficients practically unidentifiable.
-
Key theoretical result: The condition number of the Gauss-Newton least-squares problem grows as where is the gap between the - and -exponents. This is proven for four scaling-law formalisms: Chinchilla, repeated-data, Kaplan, and Droppo-Elibol.
-
Practical consequence: Non-collinear designs outperform collinear ones on held-out data with a 97.3% win rate across four laws, five corpora, and multiple floating-point precision modes (including BF16).
-
Constructive contribution: A closed-form TPP-diversity threshold (Proposition 2) that is necessary and sufficient for well-conditioned estimation, plus an identified reduced model that recovers what single-ray designs can constrain.
-
Root cause: The degeneracy is in Jacobian geometry, not the loss function—any smooth estimation objective whose curvature involves the Jacobian inherits the same ill-conditioning.
Introduction and Theoretical Foundation
Background and Motivation
Scaling laws approximate language model loss as a power-law function of parameter count and token count . The seminal Chinchilla study (Hoffmann et al., 2022) proposed for compute-optimal training. However, the authors identify a critical methodological flaw:
"This ratio is a prescription for how to allocate compute when training a single model, not a design for the experimental grid from which scaling laws are derived."
Fixed-TPP grids are widely used for scaling-law estimation despite this distinction, appearing in Cerebras-GPT, OLMo, and other major efforts. When all training runs lie on a single ray in the plane, the predictor variables become collinear.
Theoretical Foundation
The standard Chinchilla scaling law is:
where and .
On a single ray (), substituting collapses the two power-law terms when :
Definition 2 (Reduced Chinchilla model under fixed TPP):
where .
Definition 3 (Exponent gap): The law-specific exponent gap is defined as:
- Chinchilla/repeated-data:
- Kaplan:
- Droppo-Elibol: where ,
Methodology
Gauss-Newton (GN) Framework
The authors fit by nonlinear least squares, minimizing where residuals stack into , with Jacobian given by .
Table 1: Jacobian columns under D = kN (showing collinearity structure)
| Law () | Collinear pair | |||
|---|---|---|---|---|
| (A,B) | $ | |||
| (A,B) | $ | |||
| (, ) | $ | |||
| (, ) | $ |
Key Theoretical Results
Proposition 1 (Full-matrix conditioning): If two Jacobian columns satisfy with , then as :
Corollary 1 (Confidence interval inflation): Under i.i.d. Gaussian noise on a single ray :
Proposition 2 (TPP diversity threshold): For any and ordered training ratios :
where is the second central moment of and is the law-specific data-size exponent.
Table 2: Statistical identifiability under single-TPP designs
| Law | Exponents | CI inflation | ||||
|---|---|---|---|---|---|---|
| Chinchilla | 0.06 | 17 | 278 | |||
| Kaplan | 0.019 | 53 | ||||
| Droppo-Elibol | 10-20 | 100-400 |
Empirical Validation / Results
Experimental Setup
- Models: LLaMA-style transformers, 5.04–76.5M parameters across 14 log-spaced configurations
- Corpora: C4, RedPajama, Wikipedia, Cosmopedia, peS2o
- Designs: Collinear (CO) with vs. Non-collinear (NC) with grid spanning a two-dimensional region
- Fitting: Nonlinear least squares with 100 random restarts and differential-evolution polish, 30 independent optimizer seeds
Aggregate Results
Table 3: and RMSE summary across training designs
| Split | Design | Mean | 95% CI | RMSE Mean | 95% CI |
|---|---|---|---|---|---|
| Train () | CO | 0.9848 | [0.985, 0.985] | 0.1737 | [0.173, 0.174] |
| Train () | NC | 0.9526 | [0.952, 0.953] | 0.2023 | [0.202, 0.203] |
| Holdout () | CO | 0.8370 | [0.832, 0.842] | 0.2373 | [0.233, 0.241] |
| Holdout () | NC | 0.9319 | [0.930, 0.934] | 0.1561 | [0.154, 0.158] |
Key observation: CO overfits training data (higher ), but NC generalizes dramatically better on holdout data—improving from 0.837 to 0.932 and cutting RMSE from 0.237 to 0.156.
Table 4: Win rate breakdown (NC vs. CO), overall 97.3% (1,460/1,500)
| Dataset | Win Rate | Scaling Law | Win Rate | Epoch | Win Rate |
|---|---|---|---|---|---|
| C4 | 93.0% | Chinchilla | 97.6% | first | 99.8% |
| Cosmopedia | 94.7% | Droppo-Elibol | 98.0% | second | 97.6% |
| peS2o | 99.3% | Kaplan | 95.6% | final | 93.8% |
| RedPajama | 100.0% | Repeated-Data | 100.0% | ||
| Wikipedia | 99.7% |
Precision Invariance
Table 5: BF16 mixed-precision results
| Split | Design | Mean | RMSE Mean |
|---|---|---|---|
| Train () | CO | 0.9896 | 0.1854 |
| Train () | NC | 0.9907 | 0.1457 |
| Holdout () | CO | 0.9412 | 0.2546 |
| Holdout () | NC | 0.9657 | 0.1949 |
The BF16 win rate (98.7%, CI: [96.6%, 99.5%]) is comparable to full-precision results, confirming the effect is precision-invariant.
Budget-Matched Subset Enumeration
Table 6: Regime A NC-win rate (%) by law and dataset
| Law | C4 | RedPajama | Wikipedia | Cosmopedia | peS2o | Dataset Avg. |
|---|---|---|---|---|---|---|
| Chinchilla | 77.1 | 78.6 | 88.0 | 51.8 | 47.1 | 68.5 [67.3, 69.8] |
| Droppo-Elibol | 62.2 | 67.2 | 65.9 | 45.5 | 46.2 | 57.4 [56.1, 58.7] |
| Kaplan | 76.1 | 79.9 | 72.9 | 50.9 | 50.3 | 66.0 [64.1, 67.9] |
The effect is strongest on web-crawled corpora (77–88% for Chinchilla) and systematically smaller on specialized corpora (Cosmopedia, peS2o).
Theoretical and Practical Implications
Theoretical Implications
-
Jacobian geometry is the root cause: The degeneracy is not an artifact of the loss function—any smooth estimation objective whose curvature involves the Jacobian inherits the same ill-conditioning.
-
Explains replication gaps: The Kaplan-Chinchilla discrepancy (Besiroglu et al., 2024; Porian et al., 2025) can be reframed as a predictable consequence of ill-conditioning: 's confidence intervals inflate at Chinchilla exponents and at Kaplan exponents.
-
Transferability: Because the degeneracy is purely Jacobian-geometric, the analysis transfers to generative vision, time-series, and scientific ML applications.
Practical Implications
-
Design diagnostic: Proposition 2's condition (Eq. 5) can be evaluated before training using a literature estimate of , serving as an a-priori design diagnostic.
-
Reduced model reporting: When the design is collinear, the reduced parameterization (Definition 2) is the appropriate reporting target—along rays, only the combined effect of and is well constrained.
-
IsoFLOP prediction: IsoFLOP curves cut across the training ray and probe the sloppy direction that collinear fitting leaves unconstrained, making them an informative diagnostic.
-
Scaling 12 TPP ratios doesn't rescue collinearity: The condition number depends on the exponent gap, not the number of rays.
Conclusion
Main Takeaways
-
Single-TPP fits do not support coefficient-level interpretation; claims about the relative importance of model size vs. data volume require training that spans a two-dimensional region of .
-
Collinear designs produce "deceptively confident fits that fail to generalize"—overfitting training data while degrading sharply off the training ray.
-
Non-collinear designs are strictly preferred for scaling-law extrapolation, with a 97.3% win rate across all experimental conditions.
Limitations
- Theorem 1 gives an ordering, not a quantitative gap
- Corollary 1 assumes i.i.d. Gaussian residuals (temporal correlation would understate, not invert, the pathology)
- Small-scale models (5.04–76.5M parameters), single architecture, English-only text
- Budget-matched validation softens to near-50% on specialized corpora (Cosmopedia, peS2o)
Future Directions
- Downstream-task and cross-domain extensions that inherit the Jacobian argument
- Testing the framework on larger-scale models and additional architectures
- Extending the analysis to data-mixture weights and interaction terms
- Exploring isoFLOP-grid designs as a natural way to avoid the collinearity pitfall
The paper concludes that the degeneracy is fundamental and design-level: any fixed-TPP experimental design will produce ill-conditioned scaling-law estimates, and researchers should either use non-collinear designs or report the reduced model (Definition 2) when collinearity is unavoidable.
Related papers
- 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.
- EvoMem: Memory-Augmented Evolution for Code Optimization
EvoMem's persistent memory of successful mutation strategies yields a 6.40% average performance gain and 5.93x speedup in LLM-based evolutionary code search.
- Dense Contexts Are Hard Contexts: Lexical Density Limits Effective Context in LLMs
Lexical density, not just length, causally degrades LLM retrieval, activating lost-in-the-middle effects at contexts far below advertised limits.