Scaling laws are one of the most critical empirical findings in deep learning. The observation is simple in form: the training loss
This predictability makes scaling laws highly valuable in practice. A common workflow is to fit scaling laws on a handful of small runs and then extrapolate to estimate the token and compute requirements for larger models.这种可预测性使得缩放定律在实践中极具价值。常见的工作流程是在少量小规模运行上拟合缩放定律,然后外推以估计更大模型的token和计算需求。
| Symbol | Note |
|---|---|
| Model size, measured in parameter count. | |
| Training dataset size, usually measured in token count. | |
| Training compute in FLOPs. As a useful approximation, |
|
| Irreducible loss | |
| Test loss / test loss prediction function; can also refer to training loss, since they are strongly correlated. | |
| Generalization error. |
Early days: ML loss predictability早期:机器学习损失的可预测性#
The predictability of generalization error with scale had already been investigated before scaling laws became a mainstream concept.在缩放定律成为主流概念之前,泛化误差随规模的可预测性已被研究。
Amari et al. (1992) derived four types of learning curves using a Bayesian approach and the annealed approximation.Amari等人(1992)使用贝叶斯方法和退火近似推导了四种学习曲线。
- Deterministic learning algorithm, noiseless data, one unique solution:
, where is some constant.确定性学习算法,无噪声数据,唯一解:ϵ∼c⋅D−1,其中c为常数。 - Deterministic learning algorithm, noiseless data, multiple equivalent solutions:
; the learning is faster with each new data point, because the model only learns the optimal manifold of parameters, instead of finding the single solution point.确定性学习算法,无噪声数据,多个等价解:ϵ∼c⋅D−2;每个新数据点学习更快,因为模型只学习参数的最优流形,而非寻找单一解点。 - Deterministic learning algorithm, noisy data:
; noises in data make learning harder.确定性学习算法,有噪声数据:ϵ∼c⋅D−1/2;数据中的噪声使学习更困难。 - Stochastic learning algorithm, noisy data:
; here the irreducible loss is the residual error that a stochastic learner cannot reduce further, for example when the model runs out of capacity on large data. All four types of learning curves follow a power law:随机学习算法,有噪声数据:ϵ∼c⋅D−1+E;这里不可约损失E是随机学习器无法进一步降低的残差误差,例如当模型在大数据上耗尽容量时。 所有四种学习曲线都遵循幂律:
where
One of the earliest empirical studies by Hestness et al. (2017) explained the relationship between generalization error, model size and data. For a given training data size, they identified the best-fit model size via grid search and then plotted loss against training dataset size. Across four different domains in deep learning (neural machine translation, image classification, language modeling, and speech recognition), a recurring pattern was observed where:Hestness等人(2017)最早进行的实证研究之一解释了泛化误差、模型大小和数据之间的关系。对于给定的训练数据大小,他们通过网格搜索确定最佳拟合模型大小,然后绘制损失与训练数据集大小的关系图。在深度学习的四个不同领域(神经机器翻译、图像分类、语言建模和语音识别)中,观察到一种重复出现的模式:
- Generalization error scales as a power law across a set of factors (e.g. data size).泛化误差随一组因素(如数据大小)呈幂律缩放。
- Model improvements shift the error curve but do not seem to affect the power-law exponent.模型改进会移动误差曲线,但似乎不影响幂律指数。
- Interestingly, architecture changes the offset (
) of the power-law fit but does not change the exponent ( ). The slope of the power law appears to be a property of the problem domain rather than the model architecture.有趣的是,架构改变了幂律拟合的偏移量(E),但不改变指数(α)。幂律的斜率似乎是问题域的特性,而非模型架构的特性。 - The number of model parameters
needed to fit a dataset of size also scales as a power law.拟合大小为D的数据集所需的模型参数数量N也呈幂律缩放。
A conceptual illustration breaks the learning curve into three stages. In the small-data region, when there are not enough learning signals, the model performs only slightly better than random guessing. In the middle (“power-law region”), we observe a power-law relationship between loss, data, and model size. The final irreducible-error region can be attributed to factors such as noise in the data.概念性图示将学习曲线分为三个阶段。在小数据区域,当学习信号不足时,模型性能仅略优于随机猜测。在中间区域(“幂律区域”),我们观察到损失、数据和模型大小之间的幂律关系。最终不可约误差区域可归因于数据中的噪声等因素。
Rosenfeld et al. (2020) pushed this further by trying to model error as a joint function of both model size
which can be combined into a joint form:可合并为联合形式:
where
Thus, they can build a prediction model in the form of a simple parametric function with
Side note: These early works lean on classical learning-theory intuition like the VC dimension (the cardinality of the largest set of points a model can shatter) as a proxy for capacity, but in modern deep learning work the VC dimension is often too coarse to explain the behavior and the empirical power laws turned out to be much cleaner and more practical than the worst-case bounds that theory provides.附注:这些早期工作依赖于经典学习理论直觉,如VC维(模型能打散的最大点集基数)作为容量的代理,但在现代深度学习中,VC维通常过于粗糙,无法解释行为,而实证幂律比理论提供的最坏情况界限更清晰、更实用。
Scaling Laws in Data-Infinite Region数据无限区域的缩放定律#
Kaplan et al.’s Scaling LawsKaplan等人的缩放定律#
Kaplan et al. (2020) popularized the concept of scaling laws in the language modeling community. They found that the cross-entropy test loss
List of key findings:关键发现列表:
- The loss
scales as a power law with , , and individually; for optimal performance all three must scale in tandem.损失L分别随N、D和C呈幂律缩放;为获得最佳性能,三者必须同步缩放。 - Training curves follow predictable power laws whose parameters are roughly independent of model size.训练曲线遵循可预测的幂律,其参数大致独立于模型大小。
- Larger models are more sample-efficient, meaning that they reach a given loss with fewer optimization steps and fewer data points than small models.更大的模型样本效率更高,即它们以更少的优化步骤和数据点达到给定的损失。
- Architectural details (width, aspect ratio, etc.) matter less than sheer scale.架构细节(宽度、纵横比等)不如纯粹规模重要。
- Train loss and test loss are positively correlated. (Sounds trivial but this is the foundation for pretraining work. On the other hand, whether pretraining loss improvement transfers to posttraining evaluation needs separate studies.)训练损失和测试损失正相关。(听起来平凡,但这是预训练工作的基础。另一方面,预训练损失的改善是否转移到后训练评估需要单独研究。)
- Given a fixed compute budget, it is more efficient to train a very large model and stop before convergence than to train a smaller model all the way to convergence. This finding is where the Chinchilla scaling laws (the next section) disagree: Kaplan et al. overestimated the optimal model size as their fitted exponent was larger.在固定计算预算下,训练一个非常大的模型并在收敛前停止,比训练一个较小的模型直至收敛更高效。这一发现与Chinchilla缩放定律(下一节)存在分歧:Kaplan等人高估了最优模型大小,因为其拟合指数更大。
They summarize the joint dependence on
A nice consequence of this form is that the extent of overfitting (i.e. model is complex or data is small) depends predominantly on the ratio
The most influential and, in hindsight, most contested conclusion was the compute-optimal allocation. Kaplan et al. found
Another useful analysis in Kaplan et al. approximates the number of training FLOPs needed based on
Given a standard config where
Then we count backward-pass FLOPs as twice the forward-pass FLOPs, because backpropagation runs two matrix multiplications, for gradients with respect to the input activations and the weights, respectively. Thus, in total, the training FLOPs per token are approximately
Chinchilla Scaling LawsChinchilla缩放定律#
The Chinchilla paper (Hoffmann et al. 2022) studied the relationship between the optimal model size
The central question is on the best strategy to allocate resources given a constraint
The Chinchilla paper presented three neatly designed methods for scaling laws fitting.Chinchilla论文提出了三种精心设计的缩放定律拟合方法。
The empirical experiments scanned over 400 models, with sizes from 70M to over 16B parameters and training tokens from 5B to 500B. The experiments were under the assumption that every training token is unique (the infinite-data regime). All runs used a cosine learning-rate schedule decaying by 10x over the training horizon. Sweeping over model sizes traces out the compute-optimal frontier.实证实验扫描了400多个模型,参数大小从70M到超过16B,训练token从5B到500B。实验假设每个训练token都是唯一的(无限数据机制)。所有运行使用余弦学习率调度,在训练周期内衰减10倍。扫描模型大小描绘出计算最优前沿。
Method 1: Fix model sizes, vary the token budget方法1:固定模型大小,改变token预算#
For each parameter count
Method 2: IsoFLOP profiles方法2:等FLOP曲线#
Fix a compute budget
Method 3: Parametric fit方法3:参数化拟合#
Fit the same parametric function as in Rosenfeld et al. (2020) directly,直接拟合与Rosenfeld等人(2020)相同的参数化函数,
We can actually get a closed form approximation of optimal
First let’s reduce the expression to contain only
When
To find the optimal
Chinchilla arrives at its answer through three complementary methods whose final results agree with each other, and this is part of why the result was quite convincing.Chinchilla通过三种互补方法得出答案,最终结果相互一致,这也是结果相当有说服力的部分原因。
The claim in the Chinchilla paper that most large models (at the time, ~2022) were undertrained is supported by a famous demonstration: under the same compute budget as Gopher (Rae et al. 2021; 280B parameter count, 300B token budget), they trained Chinchilla (70B parameter count, 1.4T token budget), a model 4x smaller but trained on roughly 4x more tokens and it outperformed Gopher across the board.Chinchilla论文声称大多数大型模型(当时约2022年)训练不足,这一说法得到了一个著名演示的支持:在与Gopher相同的计算预算下(Rae等人,2021;280B参数,300B token预算),他们训练了Chinchilla(70B参数,1.4T token预算),一个模型小4倍但训练token多约4倍,并在所有方面优于Gopher。
Reconciling Kaplan and Chinchilla调和Kaplan和Chinchilla#
The Chinchilla scaling laws disagree with Kaplan et al. as follows:Chinchilla缩放定律与Kaplan等人的分歧如下:
- Instead of “grow the model faster than the data” (
), for every doubling of model size, you should also double the number of training tokens ( ).不是“模型增长快于数据”(Nopt∝C0.73),而是模型大小每翻倍,训练token数量也应翻倍(Nopt∝C0.5)。 - Instead of “train a big model and stop before convergence,” you should train a smaller model on more data.不是“训练大模型并在收敛前停止”,而是训练较小的模型在更多数据上。
Both papers still agree on the same underlying principle, but they disagree on where the optimal size-vs-token tradeoff lies. Why do they disagree so much?两篇论文仍同意相同的基本原则,但在最优规模与token权衡的位置上存在分歧。为什么分歧如此之大?
Difference 1: Kaplan et al. experimented mostly on small models. Kaplan et al. experimented mostly on smaller models, while the Chinchilla paper’s experiments reached more than 10x larger scales. When we extrapolate in log-log space, a small difference in the fit can result in large differences (See toy simulation).差异1:Kaplan等人主要在小模型上实验。 Kaplan等人主要在小模型上实验,而Chinchilla论文的实验规模达到10倍以上。在对数-对数空间中外推时,拟合中的微小差异可能导致巨大差异(参见玩具模拟)。
Difference 2: Embedding parameter count matters for small models.
In the small-parameter regime, embedding parameters are a non-negligible fraction of the total and thus counting them or not matters. Pearce & Song (2024) did a thorough analysis along this line. Let’s use
- Kaplan et al.:
(non-embedding)Kaplan等人:N∖E∗∝C∖E0.73(非嵌入) - Chinchilla:
(total)Chinchilla:N∗∝C0.50(总参数)
To bridge them, they fit a relationship between total parameters
This form has nice properties of being strictly increasing and
Plugging this into the Chinchilla laws equation,将其代入Chinchilla定律方程,
The relationship between
As shown in the visualization above, as
Why power law?为什么是幂律?#
Power laws are widely observed across many domains outside AI, such as in Zipf’s law, scale-free networks, urban scaling laws, and many other complex systems. The recurring pattern is that large events are rare, small events are common and the relationship between size and frequency often follows a straight line at log-log scale.幂律在AI之外的许多领域广泛观察到,例如齐普夫定律、无标度网络、城市缩放定律和许多其他复杂系统。重复出现的模式是,大事件罕见,小事件常见,大小与频率之间的关系通常在对数-对数尺度上呈直线。
Why do LLM scaling laws also have the shape of a power law?为什么LLM缩放定律也具有幂律形状?
Inspired partly by different domains displaying different exponents (Hestness et al. 2017), one early explanation by Sharma & Kaplan (2020) hypothesizes that language modeling can be viewed as doing regression on a low-dimensional manifold of data. More model parameters can induce a finer partition of the data manifold and therefore smaller generalization error. In the simplest terms, if a model of effective size
A later hypothesis (Michaud et al. 2023, Brill 2024) assumes that knowledge or skills are learned in discrete chunks (“quantized”) and that the frequency distribution of these skills follows a power law. The model learns common skills first and rare skills later, resulting in a smooth power-law decay in loss.后来的假设(Michaud等人,2023;Brill,2024)假设知识或技能以离散块(“量化”)学习,且这些技能的频率分布遵循幂律。模型先学习常见技能,后学习罕见技能,导致损失平滑的幂律衰减。
I only listed two hypotheses here, but there are more studies on explaining the shape of power-law scaling through spectral tails of data, kernel eigenvalues, natural-language statistics, or phase transitions in training dynamics.我在这里只列出了两个假设,但还有更多研究通过数据谱尾、核特征值、自然语言统计或训练动态中的相变来解释幂律缩放形状。
Scaling Laws in Data-Limited Region数据有限区域的缩放定律#
Classic scaling laws assume effectively unlimited unique data, no repetition, and no multi-epoch training. As the model size grows significantly, we are running out of enough high-quality unique tokens. In fact, some arguments about how long scaling in AI can continue are centered on whether we are hitting a “data wall”.经典缩放定律假设有效无限的唯一数据、无重复、无多轮训练。随着模型大小显著增长,我们正在耗尽足够高质量的唯一token。事实上,关于AI缩放能持续多久的一些争论集中在是否正在触及“数据墙”。
It is also worth emphasizing that the dataset behind
The study by Hernandez et al. (2022) focused on a controlled version: a mostly-unique dataset with a small fraction of repeated data. Starting from a large dataset, the data mix keeps 90% non-repeated but replaces the remaining 10% with repeats of a tiny portion of the original. By training a Transformer model for 100B tokens, they observed a double-descent phenomenon, that is, the test loss can actually get worse and then better again as a function of how much the repeated data is emphasized, an effect that becomes more pronounced as the repeated fraction grows.Hernandez等人(2022)的研究关注了一个受控版本:一个几乎唯一的数据集,其中一小部分重复数据。从一个大数据集开始,数据混合保持90%非重复,但将剩余10%替换为原始数据的一小部分的重复。通过训练一个Transformer模型处理100B token,他们观察到双下降现象,即测试损失实际上可能随着重复数据强调程度的增加而先变差再变好,这种效应随着重复比例的增加而变得更加明显。
The flat or increasing trend in the middle of training is possibly due to memorization of repeated data. Learning curves with such shapes make scaling law fitting less accurate. They also concluded repeated data hurts some OOD evaluation and downstream fine-tuning. However, their data mix is constructed in a more lab-like setup, and repetition in real-world data is often more nuanced (e.g. different data has different levels of repetition, semantic repetition, etc.).训练中期的平坦或上升趋势可能归因于对重复数据的记忆。具有这种形状的学习曲线使缩放定律拟合不太准确。他们还得出结论,重复数据损害了一些OOD评估和下游微调。然而,他们的数据混合是在更类似实验室的设置中构建的,现实世界数据中的重复通常更微妙(例如,不同数据具有不同级别的重复、语义重复等)。
Rather than saying data repetition hurts training, we are more interested in how to fit scaling laws, given that the unique high-quality data is not infinite and we likely have to repeat data during training.与其说数据重复损害训练,我们更感兴趣的是如何拟合缩放定律,因为高质量唯一数据并非无限,我们可能在训练中不得不重复数据。
Muennighoff et al. (2023) took on the research question of how compute should be allocated optimally when model training is data-constrained. Specifically, they empirically studied the impact of data repetition across roughly 400 experiments, 10M–9B parameters, data sizes up to 900B tokens, and up to 1500 epochs. The exact same dataset is repeated each epoch, shuffled between epochs, and evaluated on a held-out test set.Muennighoff等人(2023)研究了当模型训练受数据约束时如何最优分配计算的研究问题。具体来说,他们实证研究了数据重复的影响,涉及约400次实验,参数从10M到9B,数据大小高达900B token,最多1500个epoch。每个epoch重复完全相同的数据集,在epoch之间打乱,并在保留测试集上评估。
The key modeling adjustment is to decompose the total token count
They then update the Chinchilla parametric fit (method 3) to use effective (discounted) data
The intuition is that a token’s value decays exponentially as it is repeated. In their modeling, each repetition costs the token a
A symmetric formulation handles excess model size,
Their empirical fit finds that excess parameters decay faster in value than repeated data,
Most recently, Lovelace et al. (2026) revisited the same problem with a different approach. Rather than modeling overparameterization as a diminishing return on effective model size, Lovelace et al. model the interaction between model size
When they plot the fit residual for a fixed model size across a range of data-repetition levels, the observation is intuitive: more epochs cause more damage, and interestingly larger models are more sensitive to repetition. This hints that the loss penalty is likely a function of both model size and data size.当他们绘制固定模型大小在不同数据重复水平下的拟合残差时,观察结果直观:更多epoch造成更多损害,有趣的是,更大的模型对重复更敏感。这暗示损失惩罚可能是模型大小和数据大小的函数。
An explicit overfitting penalty term was introduced and built around the capacity ratio
where:其中:
is the repetition count;RD是重复次数;- the scalar
is a learnable parameter;标量P是可学习参数; - the exponent
(the 2nd learnable parameter) lets the penalty scale nonlinearly with the capacity ratio ;指数κ(第二个可学习参数)使惩罚随容量比N/UD非线性缩放; - the separate exponent
(the 3rd learnable parameter) on the repetition count decouples repetition nonlinearity from .重复次数上的单独指数δ(第三个可学习参数)将重复非线性与κ解耦。
The added term (in red) is a direct overfitting penalty that grows with both how many times you repeat the data and how over-parameterized the model is relative to the unique data available.添加的项(红色)是直接的过拟合惩罚,随数据重复次数和模型相对于可用唯一数据的过参数化程度增加而增长。
They also did a case study on how weight decay impacts training with the limited-data constraint and found that strong weight decay reduces the overfitting penalty caused by data repetition.他们还进行了案例研究,探讨权重衰减如何影响有限数据约束下的训练,发现强权重衰减减少了数据重复引起的过拟合惩罚。
Both modeling approaches by Muennighoff et al. and Lovelace et al. are constructed from empirical curve fitting, so it is still unclear why data-constrained scaling laws should have exactly these forms and why each free parameter is needed. Curious about more theoretical work along this line.Muennighoff等人和Lovelace等人的两种建模方法都基于实证曲线拟合,因此仍不清楚为什么数据约束缩放定律应具有这些确切形式,以及为什么需要每个自由参数。期待更多沿此方向的理论工作。
Trickiness of Fitting Scaling Laws in Reality现实中拟合缩放定律的棘手性#
Despite its clean form, in practice, scaling law fitting can be surprisingly sensitive to seemingly trivial procedural choices, like how you count parameters, how you round the precision, how you sum or average the loss, etc.尽管形式简洁,但在实践中,缩放定律拟合可能对看似微不足道的程序选择异常敏感,例如如何计数参数、如何舍入精度、如何求和或平均损失等。
Because a scaling law is only fit on the (relatively small, relatively cheap) models that we can afford to train, and the prediction is extrapolated for a model orders of magnitude larger. In such a setup, choices that look like rounding error may lead to wild differences in prediction.因为缩放定律仅在我们能负担得起的(相对较小、相对便宜)模型上拟合,而预测外推至大几个数量级的模型。在这种设置下,看似舍入误差的选择可能导致预测的巨大差异。
Meanwhile, scaling-law fitting assumes the only changing factor is scale, which means that the model architecture, optimizer, learning rate schedule, batch ramp, data mix, tokenizer, and other design choices should remain the same. Another underlying assumption is that all these settings should have been carefully tuned, as cases like undertrained models can lead to a different conclusion.同时,缩放定律拟合假设唯一变化的因素是规模,这意味着模型架构、优化器、学习率调度、批量提升、数据混合、分词器和其他设计选择应保持不变。另一个潜在假设是所有这些设置都应经过仔细调整,因为训练不足等情况可能导致不同结论。
The disagreement between results by Kaplan et al. and Chinchilla is one example to showcase the trickiness of scaling laws fitting.Kaplan等人和Chinchilla结果之间的分歧是展示缩放定律拟合棘手性的一个例子。
A second example is a follow-up analysis investigating why Chinchilla method 3 is slightly off from the other two methods. Besiroglu et al. (2024) extracted the raw
- A high loss scale in the L-BFGS-B minimizer, caused by averaging Huber-loss values over examples instead of summing them, which led to premature termination of the optimization. The early stopping of loss minimization during both the original fit and bootstrapping produced inconsistent estimates and implausibly narrow confidence intervals.L-BFGS-B最小化器中的高损失尺度,由对示例平均Huber损失值而非求和引起,导致优化过早终止。原始拟合和自举过程中损失最小化的提前停止产生了不一致的估计和难以置信的窄置信区间。
- The reported
and were rounded to 2 digits of precision, which made the derived look more off than they really were.报告的α和β四舍五入到2位精度,使得导出的A,B看起来比实际更偏离。
Toy simulation玩具模拟#
Here is a toy simulation widget, created by ChatGPT, designed to demonstrate three specific failure modes.以下是由ChatGPT创建的玩具模拟小部件,旨在演示三种特定的失败模式。
We assume the ground truth function is:我们假设真实函数为:
and thus
The simulation plots the loss prediction
- Loss precision: rounding losses from high to low decimal points can change the fitted parameter values.损失精度:将损失从高到低小数位舍入可以改变拟合参数值。
- Loss noise: perturbing loss values by only a multiplier of milli-loss (0.001) units leads to different fit.损失噪声:仅以毫损失(0.001)单位的乘数扰动损失值会导致不同的拟合。
- Fit-region sensitivity: fitting only small models, only medium models, or all models gives different apparent scaling laws.拟合区域敏感性:仅拟合小模型、仅拟合中等模型或拟合所有模型会给出不同的表观缩放定律。
Citation引用#
Please cite this work as:请引用本作品为:
Weng, Lilian. "Scaling Laws, Carefully". Lil'Log (Jun 2026). https://lilianweng.github.io/posts/2026-06-24-scaling-laws/
Or use the BibTex citation:或使用BibTex引用:
@article{weng2026scaling,
title = {Scaling Laws, Carefully},
author = {Weng, Lilian},
journal = {lilianweng.github.io},
year = {2026},
month = {June},
url = "https://lilianweng.github.io/posts/2026-06-24-scaling-laws/"
}
References参考文献#
[1] S. Amari, N. Fujita, and S. Shinomoto. “Four Types of Learning Curves. Neural Computation.” 4(4):605–618, 1992.[1] S. Amari, N. Fujita, and S. Shinomoto. “Four Types of Learning Curves. Neural Computation.” 4(4):605–618, 1992.
[2] Hestness et al. “Deep Learning Scaling is Predictable, Empirically.” arXiv preprint arXiv:1712.00409, 2017.[2] Hestness et al. “Deep Learning Scaling is Predictable, Empirically.” arXiv preprint arXiv:1712.00409, 2017.
[3] Rosenfeld et al. “A Constructive Prediction of the Generalization Error Across Scales.” ICLR 2020.[3] Rosenfeld et al. “A Constructive Prediction of the Generalization Error Across Scales.” ICLR 2020.
[4] Kaplan et al. “Scaling Laws for Neural Language Models.” arXiv preprint arXiv:2001.08361, 2020.[4] Kaplan et al. “Scaling Laws for Neural Language Models.” arXiv preprint arXiv:2001.08361, 2020.
[5] Hoffmann et al. “Training Compute-Optimal Large Language Models.” NeurIPS 2022.[5] Hoffmann et al. “Training Compute-Optimal Large Language Models.” NeurIPS 2022.
[6] Pearce and Song. “Reconciling Kaplan and Chinchilla Scaling Laws.” TMLR 2024.[6] Pearce and Song. “Reconciling Kaplan and Chinchilla Scaling Laws.” TMLR 2024.
[7] Bahri et al. “Explaining Neural Scaling Laws.” arXiv preprint arXiv:2102.06701, 2021.[7] Bahri et al. “Explaining Neural Scaling Laws.” arXiv preprint arXiv:2102.06701, 2021.
[8] Sharma and Kaplan. “A Neural Scaling Law from the Dimension of the Data Manifold.” arXiv preprint arXiv:2004.10802, 2020.[8] Sharma and Kaplan. “A Neural Scaling Law from the Dimension of the Data Manifold.” arXiv preprint arXiv:2004.10802, 2020.
[9] Hernandez et al. “Scaling Laws and Interpretability of Learning from Repeated Data.” arXiv preprint arXiv:2205.10487, 2022.[9] Hernandez et al. “Scaling Laws and Interpretability of Learning from Repeated Data.” arXiv preprint arXiv:2205.10487, 2022.
[10] Muennighoff et al. “Scaling Data-Constrained Language Models.” NeurIPS 2023.[10] Muennighoff et al. “Scaling Data-Constrained Language Models.” NeurIPS 2023.
[11] Lovelace et al. “Prescriptive Scaling Laws for Data Constrained Training.” arXiv preprint arXiv:2605.01640, 2026.[11] Lovelace et al. “Prescriptive Scaling Laws for Data Constrained Training.” arXiv preprint arXiv:2605.01640, 2026.
[12] Besiroglu et al. “Chinchilla Scaling: A Replication Attempt.” arXiv preprint arXiv:2404.10102, 2024.[12] Besiroglu et al. “Chinchilla Scaling: A Replication Attempt.” arXiv preprint arXiv:2404.10102, 2024.
[13] Michaud et al. “The Quantization Model of Neural Scaling” NeurIPS 2023.[13] Michaud et al. “The Quantization Model of Neural Scaling” NeurIPS 2023.
[14] Brill. “Neural Scaling Laws Rooted in the Data Distribution.” arXiv preprint arXiv:2412.07942, 2024.[14] Brill. “Neural Scaling Laws Rooted in the Data Distribution.” arXiv preprint arXiv:2412.07942, 2024.
[15] Rae et al. “Scaling Language Models: Methods, Analysis & Insights from Training Gopher.” arXiv preprint arXiv:2112.11446, 2021.[15] Rae et al. “Scaling Language Models: Methods, Analysis & Insights from Training Gopher.” arXiv preprint arXiv:2112.11446, 2021.