REVIEW 4 major objections 4 minor 31 references
From Data to Knowledge: Evaluating How Efficiently Language Models Learn Facts
T0 review · 4 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read This paper claims that a language model's factual sample efficiency can be measured by fitting a power-law curve to its accuracy as a function of how often a fact appears in pre-training data, with the fitted slope $\alpha_m$ serving as a…
desk verdict Useful framework, honest limitations, but the headline ranking rests on an unvalidated frequency heuristic and no uncertainty quantification. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the power scaling function $F(x) = 1 - \frac{L_0 + x_0}{(1+x)^{\alpha_m}}$, fitted by maximum likelihood over all BEAR probe items and models, with $\alpha_m$ as the model-specific slope that the paper treats as the sample-efficiency score. It is paired with a weighted accuracy score over frequency buckets, $W_{ASB}$, which gives a more direct accuracy view, and both metrics rest on frequency counts produced by a co-occurrence heuristic that counts a fact whenever its subject and object appear in the same sentence. The function does the load-bearing work: it replaces a binary 'learned or not' threshold with a continuous curve, so sample efficiency becomes how quickly accuracy grows with exposure and can be compared across models with a single number.
What would settle it
Take a random sample of BEAR facts, recompute their frequencies with an entity-linking and relation-extraction pipeline (or manual annotation), and re-fit $\alpha_m$; if the relative frequencies change enough to reorder the $\alpha_m$ values across the eight models, the claim that $\alpha_m$ measures sample efficiency is not supported.
Extended reading notes
Core claim
The paper's central claim is that a language model's factual sample efficiency can be quantified by fitting the function $F(x) = 1 - \frac{L_0 + x_0}{(1+x)^{\alpha_m}}$, where $x$ is the number of times a subject–relation–object fact co-occurs in a sentence in the pre-training corpus and $\alpha_m$ is a per-model parameter. A higher $\alpha_m$ means the probability of answering a factual question correctly rises faster per additional observed sample, so $\alpha_m$ ranks models by sample efficiency. Trained on identical five-billion-token Wikipedia data, the LLaMA models achieved the highest $\alpha$ values (0.103 for the small model, 0.120 for the medium), followed by Mamba 2, xLSTM, and GPT2, and in every architecture the medium model beat the small one. The paper also finds that models differ most on low-frequency facts (fewer than about 1024 occurrences), while high-frequency facts are learned to similar accuracy by all models, and that $\alpha$ values are robust across test splits with different frequency profiles.
Load-bearing premise
The whole analysis rests on the assumption that counting sentences where the subject and object merely appear together gives accurate relative frequencies of how often a fact is actually expressed in the training text.
Editorial extensions
If this is right
- If $\alpha_m$ is a valid sample-efficiency measure, model comparisons no longer need matched final accuracies; one can rank architectures by how fast they convert exposures into knowledge.
- The finding that size helps mainly on low-frequency facts implies that training larger models is a direct route to better long-tail knowledge, while smaller models can match them on common facts.
- The reported robustness of $\alpha$ across test splits with different frequency profiles means a non-representative probe set could still yield a reliable efficiency ranking.
- Because $\alpha$ values stabilize early in training, the metric measured at an intermediate checkpoint could predict final sample efficiency without completing full training.
Reading between the lines
- The co-occurrence heuristic may inflate frequencies when two entities appear in a sentence without actually expressing the target relation; recomputing counts with entity linking or manual annotation could reorder the $\alpha_m$ rankings across the eight models.
- The fitted $\alpha_m$ could be connected to neural scaling laws: if it scales predictably with model size or compute, it could become a planning tool for estimating how much data a given architecture needs to reach a target fact-recall level.
- The method could be applied to other corpora or languages to test whether the sample-efficiency rankings persist across data distributions, since the paper only uses one English Wikipedia dump.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces a framework for measuring how efficiently language models learn relational facts as a function of fact frequency in the pre-training corpus. The authors estimate fact frequencies by a co-occurrence heuristic applied to a Wikipedia dump, pre-train eight small-to-medium models (GPT-2, LLaMA, xLSTM, Mamba-2) on the same five-billion-token corpus, and propose two sample-efficiency metrics: a weighted accuracy over frequency buckets (W_ASB) and a fitted power-law curve F(x) = 1 - (L0 + x0)/(1+x)^alpha_m whose per-model slope alpha_m is interpreted as sample efficiency. The empirical results indicate that larger models are more sample-efficient, that LLaMA models achieve the highest scores, and that most models differ mainly on low-frequency facts. The paper also tracks metrics across training checkpoints and reports robustness experiments on frequency-split test sets.
Significance. If the proposed framework is valid, it would provide a useful, controlled methodology for comparing sample efficiency across architectures and sizes, and the released fact-frequency counts would be a reusable resource. The study has real strengths: all models are trained on the same corpus with the same tokenizer and comparable parameter counts, intermediate checkpoints are probed, and code and frequency statistics are released. The central qualitative trend, that accuracy increases with fact frequency and that model differences concentrate on low-frequency facts, is visible in the raw bucket accuracies and is not dependent on the parametric fit alone. However, the paper's headline ranking of architectures rests on the validity of the unvalidated co-occurrence frequency estimates and on the fitted alpha_m values, which are reported without uncertainty quantification. The significance of the contribution is therefore conditional on addressing these load-bearing methodological gaps.
major comments (4)
- [Section 3.1] The fact-frequency estimates that form the x-axis of the entire analysis are produced by a co-occurrence heuristic that counts a fact whenever the subject and object strings appear in the same sentence, with no verification that the relation is expressed and no entity disambiguation. The authors state that this heuristic is 'sufficiently accurate to predict the relative frequencies' but provide no precision/recall evaluation, no comparison against entity-linked counts, and no manual validation sample. The Limitations section itself concedes 'possible mismappings of entities due to likely ambiguity or relation misidentification.' Because every alpha_m and W_ASB value is computed from these frequency counts, systematic false positives (for example, alias co-occurrence in unrelated sentences) or false negatives can reorder or compress the true frequency axis and change the shape of the fitted curve. This is not a peripheral concern: the differences between non-LLaMA models in Table 1 are tiny (alpha_m = 0.084, 0.086, 0.087), so even modest x-axis noise could alter the reported ranking. I request a validation of the heuristic against a manually checked or entity-linked sample, and a sensitivity analysis showing that the main conclusions are stable under plausible frequency-count perturbations.
- [Section 3.3.2] The maximum-likelihood procedure fits L0, x0, and the model-specific alpha_m jointly on the same data that are then used to rank the models, and the paper reports no confidence intervals, bootstrap estimates, or repeated-seed variance for alpha_m. The conclusion that LLaMA is most sample-efficient and that larger models are more sample-efficient is essentially an ordering of fitted alpha_m values, yet the reported differences between several models are extremely small (for example, small GPT-2 at 0.084 versus small xLSTM at 0.086 versus small Mamba-2 at 0.087 in Table 1). Without uncertainty quantification or at least multiple training runs, it is impossible to determine whether these differences are statistically meaningful. I ask the authors to report profile-likelihood or bootstrap confidence intervals for alpha_m, and to state whether the ranking is stable across random seeds or replicated training runs.
- [Section 3.3.1] The weighting function in the W_ASB metric depends on an arbitrarily chosen decay parameter lambda = 0.05, and the paper does not report how the metric or the resulting model ranking changes as lambda varies. Since W_ASB is presented as one of the two proposed sample-efficiency metrics and is used to support the architecture-level conclusions, the choice of lambda should be justified either by a sensitivity analysis over a range of lambda values or by an explicit criterion for setting it. The current text states the value, but does not show that the ranking of models is robust to this choice.
- [Section 4.3] The metric-robustness experiments vary the frequency composition of the test split, but they do not test robustness to errors in the frequency estimates themselves, which is the more load-bearing uncertainty given the unvalidated heuristic in Section 3.1. In addition, the claim that alpha is robust across splits assumes that the sampled facts are 'on average equally hard,' an assumption that is stated but not tested. I recommend either directly validating the frequency estimates or adding a perturbation analysis that adds noise to the fact counts and measures the resulting change in alpha_m and W_ASB rankings.
minor comments (4)
- [Section 3.1] There is a typo in the first sentence: 'wether' should be 'whether.' Also, 'repostory' in the Contributions section should be 'repository.'
- [Figure 6] Figures 6(a) and 6(b) appear to display the same correlation matrix in the manuscript text; please check whether the two panels are intended to be different, and if so, label them clearly.
- [Throughout] The model name 'LL AMA' is written with a space throughout the paper; this is likely a formatting artifact and should be corrected to 'LLaMA.'
- [Section 4.1.2] The sentence reporting L0 = 0.00 and x0 = 0.88 as optimized values would benefit from a brief description of the uncertainty in these estimates, especially since the interpretation of x0 as reflecting the heuristic's underestimation is central to the discussion.
Circularity Check
No significant circularity: the paper fits α_m to probing data and interprets the fitted ordering as sample efficiency, which is an operationalization rather than a prediction derived from the conclusion; the unvalidated frequency heuristic is a validity concern, not a circular step.
full rationale
The paper's central derivation is self-contained. The sample-efficiency metric α_m is a maximum-likelihood parameter fit to the BEAR probing outputs as a function of co-occurrence-based frequency buckets (Section 3.3.2), and the conclusion that LLaMA models are most sample-efficient is an empirical ordering of the fitted α_m values together with raw accuracy and W_ASB bucket scores (Table 1, Figure 16). No held-out quantity is renamed as a prediction: α_m is explicitly reported as a fitted parameter, and the robustness analysis re-fits α_m on low- and high-frequency splits rather than claiming an independent prediction. The statement that higher α_m means higher sample efficiency is a stated operationalization, not a derivation whose conclusion was presupposed. The BEAR probe is prior work by overlapping authors, but it is used as a fixed external evaluation instrument and is not fitted, redefined, or justified solely by self-citation in this paper. The paper's acknowledged limitation that the co-occurrence heuristic may produce noisy frequency counts is a measurement-validity risk that could affect reliability of the x-axis, but it does not make any equation or fitted parameter equal to the conclusion by construction. Therefore no circular step is exhibited, and the appropriate finding is no significant circularity.
Assumptions & free parameters
free parameters (4)
- lambda (W_ASB decay) =
0.05
- L0 (irreducible error floor) =
0.00 for BEAR, 0.0 for BEAR-big
- x0 (frequency offset) =
0.88 for BEAR, 0.92 for BEAR-big
- alpha_m (per-model slope) =
GPT2 0.084/0.098; LLaMA 0.103/0.120; xLSTM 0.086/0.100; Mamba2 0.087/0.106
assumptions (3)
- domain assumption Co-occurrence of two entities in a sentence implies their relational fact is present in that sentence.
- ad hoc to paper The probability of correct recall follows F(x) = 1 - (L0 + x0)/(1+x)^alpha.
- domain assumption BEAR multiple-choice statements measure factual recall equivalently across causal and masked LMs.
Cite this review
Pith. "Pith review of From Data to Knowledge: Evaluating How Efficiently Language Models Learn Facts." pith.science (2026). https://pith.science/paper/SQLEP2X6
@misc{pith2026250616912,
author = {Pith},
title = {Pith review of: From Data to Knowledge: Evaluating How Efficiently Language Models Learn Facts},
year = {2026},
howpublished = {\url{https://pith.science/paper/SQLEP2X6}},
note = {Machine review of arXiv:2506.16912}
}
read the original abstract
Sample efficiency is a crucial property of language models with practical implications for training efficiency. In real-world text, information follows a long-tailed distribution. Yet, we expect models to learn and recall frequent and infrequent facts. Sample-efficient models are better equipped to handle this challenge of learning and retaining rare information without requiring excessive exposure. This study analyzes multiple models of varying architectures and sizes, all trained on the same pre-training data. By annotating relational facts with their frequencies in the training corpus, we examine how model performance varies with fact frequency. Our findings show that most models perform similarly on high-frequency facts but differ notably on low-frequency facts. This analysis provides new insights into the relationship between model architecture, size, and factual learning efficiency.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRING...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Maximilian Beck, Korbinian Pöppel, Markus Spanring, Andreas Auer, Oleksandra Prudnikova, Michael Kopp, Günter Klambauer, Johannes Brandstetter, and Sepp Hochreiter. 2024. https://arxiv.org/abs/2405.04517 xlstm: Extended long short-term memory . Preprint, arXiv:2405.04517
arXiv 2024
-
[4]
Wang, Zeb Kurth-Nelson , Charles Blundell, and Demis Hassabis
Matthew Botvinick, Sam Ritter, Jane X. Wang, Zeb Kurth-Nelson , Charles Blundell, and Demis Hassabis. 2019. https://doi.org/10.1016/j.tics.2019.02.006 Reinforcement Learning , Fast and Slow . Trends in Cognitive Sciences, 23(5):408--422
-
[5]
Leshem Choshen, Yang Zhang, and Jacob Andreas. 2024. https://arxiv.org/abs/2410.11840 A Hitchhiker 's Guide to Scaling Law Estimation . Preprint, arXiv:2410.11840
arXiv 2024
-
[6]
Tri Dao and Albert Gu. 2024. Transformers are SSM s: Generalized models and efficient algorithms through structured state space duality. In International Conference on Machine Learning (ICML)
2024
-
[7]
Kehua Feng, Keyan Ding, Kede Ma, Zhihua Wang, Qiang Zhang, and Huajun Chen. 2024. https://arxiv.org/abs/2404.08008 Sample-efficient human evaluation of large language models via maximum discrepancy competition . Preprint, arXiv:2404.08008
arXiv 2024
-
[8]
Leo Gao, Jonathan Tow, Baber Abbasi, Stella Biderman, Sid Black, Anthony DiPofi, Charles Foster, Laurence Golding, Jeffrey Hsu, Alain Le Noac'h, Haonan Li, Kyle McDonell, Niklas Muennighoff, Chris Ociepa, Jason Phang, Laria Reynolds, Hailey Schoelkopf, Aviya Skowron, Lintang Sutawika, and 5 others. 2024. https://doi.org/10.5281/zenodo.12608602 A framework...
Show all 31 references
-
[9]
Nathan Godey, \'E ric de la Clergerie , and Beno \^i t Sagot. 2024. https://arxiv.org/abs/2402.19406 On the Scaling Laws of Geographical Representation in Language Models . Preprint, arXiv:2402.19406
2024 arXiv
-
[10]
Patrick Haller, Jonas Golde, and Alan Akbik. 2024. https://aclanthology.org/2024.conll-babylm.7/ BabyHGRN : Exploring RNNs for Sample-Efficient Language Modeling . In The 2nd BabyLM Challenge at the 28th Conference on Computational Natural Language Learning , pages 82--94, Mia...
2024
-
[11]
Danny Hernandez, Jared Kaplan, Tom Henighan, and Sam McCandlish. 2021. https://arxiv.org/abs/2102.01293 Scaling Laws for Transfer . Preprint, arXiv:2102.01293
2021 arXiv
- [12]
-
[13]
Matthew Honnibal and Ines Montani. 2017. spaCy 2 : Natural language understanding with B loom embeddings, convolutional neural networks and incremental parsing. To appear
2017
-
[14]
Jan-Christoph Kalo and Leandra Fichtel. 2022. https://www.akbc.ws/2022/assets/pdfs/15_kamel_knowledge_analysis_with_.pdf KAMEL : Knowledge Analysis with Multitoken Entities in Language Models . In Automated Knowledge Base Construction
2022
- [15]
-
[16]
Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei
Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. 2020. https://doi.org/10.48550/arXiv.2001.08361 Scaling Laws for Neural Language Models . Preprint, arXiv:2001.08361
-
[17]
Jianghao Lin, Xinyi Dai, Rong Shan, Bo Chen, Ruiming Tang, Yong Yu, and Weinan Zhang. 2024. https://arxiv.org/abs/2406.02368 Large language models make sample-efficient recommender systems . Preprint, arXiv:2406.02368
2024 arXiv
-
[18]
Liu, Ananya Kumar, Percy Liang, and Robin Jia
Nelson F. Liu, Ananya Kumar, Percy Liang, and Robin Jia. 2023. https://arxiv.org/abs/2210.06456 Are sample-efficient nlp models more robust? Preprint, arXiv:2210.06456
2023 arXiv
-
[19]
Xingyu Lu, Xiaonan Li, Qinyuan Cheng, Kai Ding, Xuanjing Huang, and Xipeng Qiu. 2024. https://arxiv.org/abs/2406.15720 Scaling Laws for Fact Memorization of Large Language Models . Preprint, arXiv:2406.15720
2024 arXiv
-
[20]
Vincent Micheli, Eloi Alonso, and François Fleuret. 2023. https://arxiv.org/abs/2209.00588 Transformers are sample-efficient world models . Preprint, arXiv:2209.00588
2023 arXiv
-
[21]
Mike Mintz, Steven Bills, Rion Snow, and Daniel Jurafsky. 2009. https://aclanthology.org/P09-1113 Distant supervision for relation extraction without labeled data . In Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Con...
2009
-
[22]
Fabio Petroni, Tim Rockt \"a schel, Sebastian Riedel, Patrick Lewis, Anton Bakhtin, Yuxiang Wu, and Alexander Miller. 2019. https://doi.org/10.18653/v1/D19-1250 Language models as knowledge bases? In Proceedings of the 2019 Conference on Empirical Methods in Natural Language P...
2019 doi
- [23]
-
[24]
Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. 2019. Language models are unsupervised multitask learners
2019
-
[25]
Adam Roberts, Colin Raffel, and Noam Shazeer. 2020. https://doi.org/10.18653/v1/2020.emnlp-main.437 How Much Knowledge Can You Pack Into the Parameters of a Language Model ? In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing ( EMNLP ) , p...
2020 doi
-
[26]
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, Aurelien Rodriguez, Armand Joulin, Edouard Grave, and Guillaume Lample. 2023. https://arxiv.org/abs/2302.13971 Llama:...
2023 arXiv
-
[27]
Wikimedia Foundation . 2023. https://dumps.wikimedia.org Dump of English Wikipedia of November 1st, 2023
2023
-
[28]
Jacek Wiland, Max Ploner, and Alan Akbik. 2024. https://doi.org/10.18653/v1/2024.findings-naacl.155 BEAR : A unified framework for evaluating relational knowledge in causal and masked language models . In Findings of the Association for Computational Linguistics: NAACL 2024, p...
2024 doi
-
[29]
Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, Remi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick von Platen , Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger, and...
2020 doi
-
[30]
Yang Yu. 2018. https://doi.org/10.24963/ijcai.2018/820 Towards sample efficient reinforcement learning . In Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence, IJCAI-18 , pages 5739--5743. International Joint Conferences on Artificial I...
2018 doi
-
[31]
Chongsheng Zhang, George Almpanidis, Gaojuan Fan, Binquan Deng, Yanbo Zhang, Ji Liu, Aouaidjia Kamel, Paolo Soda, and João Gama. 2024. https://arxiv.org/abs/2408.00483 A systematic review on long-tailed learning . Preprint, arXiv:2408.00483
2024 arXiv
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.