REVIEW 3 major objections 4 minor 1 cited by
Reasoning Bias of Next Token Prediction Training
T0 review · 3 major / 4 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read Next-token prediction beats answer-only training on reasoning tasks because the extra tokens act as a regularizer.
desk verdict Solid empirical comparison of NTP vs CTP on reasoning benchmarks, but the noise-regularization mechanism is not established because the 'noise' tokens are informative reasoning content. 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 load-bearing object is the decomposition of the next-token-prediction loss into the critical-token loss plus a residual 'noise loss' on all other positions. With the critical token last, the NTP loss averages a cross-entropy term over every position, while the CTP loss keeps only the final term. The paper argues that the noise loss acts like gradient noise during optimization, creating a two-stage learning process (a 'flattening' stage that learns the sequence distribution, then a 'fitting' stage that focuses on the answer) and steering the model toward flatter minima. The anchor function, a synthetic task with one composite operator hidden from training, serves as the probe that shows NTP prefers the lower-complexity reasoning solution that generalizes, while CTP can settle on a memorized non-reasoning solution.
What would settle it
Train NTP and CTP on a reasoning dataset where the non-answer tokens are replaced by uniform random tokens of the same length and vocabulary, keeping answer positions fixed. If NTP no longer outperforms CTP (or its accuracy drops to CTP's level), the advantage comes from the information content of those tokens, not from noise-induced regularization; if the advantage persists, the noise-regularization mechanism is supported.
Extended reading notes
Core claim
The paper's central discovery is that training a transformer to predict all tokens in a reasoning sequence—rather than only the answer tokens—imparts a reasoning bias: NTP-trained models generalize to out-of-distribution questions, resist contradictory and poisoned labels, and prefer a compositional 'reasoning' solution over a simpler memorized one on an anchor-function benchmark. The authors attribute this to the non-critical tokens acting as a regularizer that flattens the loss landscape and slows memorization. They find that NTP reaches 100% accuracy on PrOntoQA while CTP plateaus near 80%, that NTP keeps near-perfect accuracy on a reversed and an out-of-vocabulary test set while CTP overfits, and that on the synthetic anchor function NTP shifts the model from the non-reasoning to the reasoning solution. On transfer, NTP-trained models generalize faster during finetuning but also forget the pretrained task more easily. The authors conclude that NTP is instrumental during pretraining and CTP is more effective for finetuning.
Load-bearing premise
The explanation assumes that the non-answer tokens in the training sequences are noise rather than structured information, even though in real reasoning datasets those tokens contain the facts, rules, and questions needed to derive the answer.
Editorial extensions
If this is right
- Pretraining on question-answer data should keep next-token prediction on all tokens rather than switching to answer-only loss, if reasoning generalization is the goal.
- For finetuning, answer-only (CTP/SFT) loss is faster and matches or exceeds NTP, so the optimal training recipe switches objectives between phases.
- NTP-trained models transfer faster to new tasks but forget the old task more readily, so finetuning schedules must budget for catastrophic forgetting.
- The noise-regularization view predicts that adding noise to a CTP objective (for example, through noisy embeddings) should recover part of NTP's reasoning advantage.
- Comparisons of training objectives should be evaluated on out-of-distribution and robustness tests, not only on held-out in-distribution accuracy, because that is where the reasoning bias appears.
Reading between the lines
- If the advantage is truly noise-driven, it should scale with the fraction and entropy of non-answer tokens; a quantitative law connecting sequence noise level to reasoning gains could be fitted and tested, which the paper does not provide.
- The same mechanism may apply to other sequence-prediction settings where the supervisory signal occupies a small part of the output, such as program synthesis and robot-policy learning, making CTP-like objectives there similarly risky.
- An explicit curriculum that anneals from NTP to CTP loss during pretraining could combine NTP's reasoning generalization with CTP's faster convergence; the paper tests pretraining on noise-only loss followed by CTP, but not a continuous schedule.
- The catastrophic forgetting asymmetry suggests that NTP-trained models have more malleable representations; this could be an advantage for continual learning if paired with replay, which the paper does not explore.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper compares next-token prediction (NTP) with critical-token prediction (CTP) when training small GPT-2 models from scratch on reasoning datasets. It reports that NTP outperforms CTP in accuracy, out-of-distribution generalization, robustness to embedding and weight perturbations, and resistance to poisoned labels, despite slower early learning. The authors attribute this advantage to a noise-regularization effect of the non-critical tokens and recommend NTP for pretraining and CTP for finetuning. Evidence includes PrOntoQA variants, nine other reasoning and text-classification datasets, an anchor-function synthetic task, finetuning/transfer experiments, and loss-landscape flatness measurements.
Significance. If the empirical ranking is reproducible, the paper offers a useful counterpoint to token-selection methods such as RHO-1 and suggests a concrete role for full-sequence prediction in reasoning tasks. The anchor-function experiments provide a clean synthetic demonstration that full-sequence training can shift a model from a non-reasoning to a reasoning solution, and the poisoned-label experiments are a valuable robustness probe. However, the central explanatory claim—that the advantage is caused by 'noise' regularization—is not yet established for natural-language reasoning data, because the extra tokens in those datasets are informative rather than random. The paper would be considerably strengthened by ablations that separate informative-token prediction from random-noise regularization, and by quantitative reproducibility information for the main comparisons.
major comments (3)
- [§3.2, §7.1, Eqs. (3)-(4), Fig. 10(b)] The proposed mechanism identifies the non-critical terms in Eq. (3) with 'noise,' and Section 7.1 calls the residual beyond the CTP term the 'noise loss.' However, in PrOntoQA and the other natural-language reasoning benchmarks, these positions contain the facts, rules, and question that determine the answer (see the underlined inference chain in Appendix 7.3). Predicting those tokens is structured supervision, not random perturbation. The observed NTP advantage could therefore come from access to a richer learning signal rather than from noise-induced regularization. The anchor-function experiments in Section 4.3 use genuinely random padding and support the noise-regularization mechanism in that synthetic setting, but Fig. 10(b) only shows that gradient norms on non-critical positions decrease late in training; it does not establish that their role during optimization was regularization. To sustain the mechanism claim, the authors should isolate the property of the extra tokens, for example by comparing CTP trained with additional loss on the informative chain tokens against CTP trained with added random tokens, and report whether only the former reproduces the NTP advantage.
- [§6.3, Fig. 9] The abstract and Section 6 claim that NTP reaches flatter minima, but the text of Section 6.3 states that 'the flatness disparity between the two training approaches becomes considerably more nuanced' and that 'the flatness analysis under this specific scenario favors CTP' on PrOntoQA reverse and PARARULE plus, with a post-hoc explanation in terms of search-space size. Because flatness is the main mechanistic evidence offered for the generalization claim, this admission directly weakens the central explanation. Please report the flatness comparison quantitatively for all tasks, specify the range of perturbation strengths used in Eq. (6), and either reconcile the contradictory results with the noise-regularization account or remove flatness from the load-bearing evidence.
- [Figs. 2, 4, 6, 7, 8] Most accuracy and robustness comparisons are shown for a single training run without error bars or seed information; only Fig. 5 reports standard deviations over three runs. Since several reported gaps (for example, the text-classification results in Fig. 4 and the finetuning curves in Fig. 6) are small or variable, single-run curves are insufficient to support the claim that NTP 'consistently outperforms' CTP. Please report means and variances over at least three seeds for the main comparisons, or clearly mark which differences are reproducible.
minor comments (4)
- [§7.4.1, §7.4.2, §7.3] There are several typos: 'vallina' should be 'vanilla' in Sections 7.4.1 and 7.4.2, 'THe' should be 'The' in the ReCOGS description, and 'LTP' should be 'CTP' in the RobustLR paragraph.
- [§3.2, Eq. (4) vs. §7.4.2] Equation (4) defines CTP as the loss on a single final token x_T, but Appendix 7.4.2 says the CTP loss is calculated on all tokens between the [SEP] symbols, which for multi-token answers includes more than one token; please reconcile the formal definition with the experimental implementation.
- [§7.3, SimpleLogic] The text says 'we introduce 192,000 training dataset and 1,0000 testing dataset'; the '1,0000' appears to be a typo for '10,000'.
- [Figure 2 and §4.1] The figure caption for panel (c) says '1-hop specific PrOntoQA on OOV data,' while the main text explains that the authors downgraded from 2-hop to 1-hop because both methods struggled on 2-hop OOV; please state this limitation directly in the caption and clarify the scope of the OOV claim.
Circularity Check
Empirical NTP-vs-CTP comparison is self-contained; the mechanism label is definitional but not load-bearing.
-
self definitional
[Sec. 7.1, with Eq. (3) and Eq. (4) in Sec. 3.2]
"To our knowledge, the NTP loss function incorporates a component from CTP. We can isolate the CTP portion within the NTP loss and refer to the remaining part as the "noise loss"."
Eq. (4) defines CTP loss and Eq. (3) defines NTP loss, so the residual the paper calls 'noise loss' is, by construction, exactly the sum over non-critical tokens that separates NTP from CTP. Attributing NTP's advantage to 'the regularizing influence of noise' (Abstract) then reduces to saying that this residual term matters, which is an arithmetic identity of the comparison rather than an independently established mechanism. In PrOntoQA and similar reasoning datasets, the residual contains the facts, rules, and question needed for the answer, so treating it as random noise is an assumption; the anchor-function experiments with genuine noise provide only partial, synthetic support.
full rationale
The central empirical claim, that NTP outperforms CTP on reasoning benchmarks, is obtained by training from scratch on external datasets such as PrOntoQA, LogicInference, RobustLR, and PARARULE Plus, so it is not derived from a fitted parameter and is not circular. The paper contains no fitted input passed off as a prediction. The main circularity-adjacent move is terminological: Section 7.1 defines the residual NTP loss as 'noise loss,' and the Abstract explains NTP's advantage as 'the regularizing influence of noise.' Because that residual is exactly what distinguishes NTP from CTP, the explanatory label is definitional; whether the residual acts as noise regularization in natural-language reasoning is not established by the equations. The use of the authors' prior anchor-function work (Zhang et al. 2024a,b) is a self-citation, but it supports a supporting synthetic experiment rather than the main benchmark ranking, so it is not load-bearing. These issues lower confidence in the proposed mechanism but do not make the empirical result circular; hence a low score of 2.
Assumptions & free parameters
assumptions (3)
- ad hoc to paper Non-answer tokens in question-answer sequences are noise that carries no task-relevant signal.
- domain assumption Findings from GPT-2 125M trained from scratch on synthetic reasoning datasets transfer to LLM pretraining practice.
- domain assumption Classification accuracy on the chosen synthetic benchmarks is a valid measure of reasoning ability.
Cite this review
Pith. "Pith review of Reasoning Bias of Next Token Prediction Training." pith.science (2026). https://pith.science/paper/MJIHFUJ6
@misc{pith2026250202007,
author = {Pith},
title = {Pith review of: Reasoning Bias of Next Token Prediction Training},
year = {2026},
howpublished = {\url{https://pith.science/paper/MJIHFUJ6}},
note = {Machine review of arXiv:2502.02007}
}
read the original abstract
Since the inception of Large Language Models (LLMs), the quest to efficiently train them for superior reasoning capabilities has been a pivotal challenge. The dominant training paradigm for LLMs is based on next token prediction (NTP). Alternative methodologies, called Critical Token Prediction (CTP), focused exclusively on specific critical tokens (such as the answer in Q\&A dataset), aiming to reduce the overfitting of extraneous information and noise. Contrary to initial assumptions, our research reveals that despite NTP's exposure to noise during training, it surpasses CTP in reasoning ability. We attribute this counterintuitive outcome to the regularizing influence of noise on the training dynamics. Our empirical analysis shows that NTP-trained models exhibit enhanced generalization and robustness across various benchmark reasoning datasets, demonstrating greater resilience to perturbations and achieving flatter loss minima. These findings illuminate that NTP is instrumental in fostering reasoning abilities during pretraining, whereas CTP is more effective for finetuning, thereby enriching our comprehension of optimal training strategies in LLM development.
Figures
Figures from the paper (9 more)
Forward citations
Cited by 1 Pith paper
-
Weight-norm Criticality: A Mechanism for Loss Spikes Induced by the Normalization and Weight Decay
Weight decay on scale-invariant weights creates a norm-dependent sharpness boundary; crossing it predicts loss spikes in normalized networks.
Reference graph
Works this paper leans on
-
[1]
J., Javaheripi, M., Kauffmann, P., Lee, J
Abdin, M., Aneja, J., Behl, H., Bubeck, S., Eldan, R., Gunasekar, S., Harrison, M., Hewett, R. J., Javaheripi, M., Kauffmann, P., Lee, J. R., Lee, Y. T., Li, Y., Liu, W., Mendes, C. C. T., Nguyen, A., Price, E., de Rosa, G., Saarikivi, O., Salim, A., Shah, S., Wang, X., Ward, R., Wu, Y., Yu, D., Zhang, C., and Zhang, Y. Phi-4 technical report, 2024. URL h...
arXiv 2024
-
[2]
Bachmann, G. and Nagarajan, V. The pitfalls of next-token prediction. In Salakhutdinov, R., Kolter, Z., Heller, K., Weller, A., Oliver, N., Scarlett, J., and Berkenkamp, F. (eds.), Proceedings of the 41st International Conference on Machine Learning, volume 235 of Proceedings of Machine Learning Research, pp.\ 2296--2318. PMLR, 21--27 Jul 2024. URL https:...
work page 2024
-
[3]
Bank, D. and Giryes, R. An etf view of dropout regularization. British Machine Vision Conference, 2020
work page 2020
-
[4]
Y., Hartill, T., Tan, N., Deng, Z., Witbrock, M., and Liu, J
Bao, Q., Peng, A. Y., Hartill, T., Tan, N., Deng, Z., Witbrock, M., and Liu, J. Multi-step deductive reasoning over natural language: An empirical study on out-of-distribution generalisation, 2024. URL https://arxiv.org/abs/2207.14000
arXiv 2024
-
[5]
Understanding robustness of transformers for image classification
Bhojanapalli, S., Chakrabarti, A., Glasner, D., Li, D., Unterthiner, T., and Veit, A. Understanding robustness of transformers for image classification. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pp.\ 10231--10241, October 2021
work page 2021
-
[6]
R., Angeli, G., Potts, C., and Manning, C
Bowman, S. R., Angeli, G., Potts, C., and Manning, C. D. A large annotated corpus for learning natural language inference. In M \`a rquez, L., Callison-Burch, C., and Su, J. (eds.), Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing, pp.\ 632--642, Lisbon, Portugal, September 2015. Association for Computational Linguist...
-
[7]
Brown, T. B., Mann, B., Ryder, N., Subbiah, M., Kaplan, J., Dhariwal, P., Neelakantan, A., Shyam, P., Sastry, G., Askell, A., Agarwal, S., Herbert-Voss, A., Krueger, G., Henighan, T., Child, R., Ramesh, A., Ziegler, D. M., Wu, J., Winter, C., Hesse, C., Chen, M., Sigler, E., teusz Litwin, M., Gray, S., Chess, B., Clark, J., Berner, C., McCandlish, S., Rad...
arXiv 2005
-
[8]
Dropout as a low-rank regularizer for matrix factorization
Cavazza, J., Morerio, P., Haeffele, B., Lane, C., Murino, V., and Vidal, R. Dropout as a low-rank regularizer for matrix factorization. In International Conference on Artificial Intelligence and Statistics, pp.\ 435--444. PMLR, 2018
work page 2018
Show all 67 references
-
[9]
Transformers as soft reasoners over language
Clark, P., Tafjord, O., and Richardson, K. Transformers as soft reasoners over language. In Bessiere, C. (ed.), Proceedings of the Twenty-Ninth International Joint Conference on Artificial Intelligence, IJCAI-20 , pp.\ 3882--3890. International Joint Conferences on Artificial ...
2020 doi
-
[10]
From explicit cot to implicit cot: Learning to internalize cot step by step, 2024
Deng, Y., Choi, Y., and Shieber, S. From explicit cot to implicit cot: Learning to internalize cot step by step, 2024. URL https://arxiv.org/abs/2405.14838
2024 arXiv
-
[11]
Reducing transformer depth on demand with structured dropout, 2019
Fan, A., Grave, E., and Joulin, A. Reducing transformer depth on demand with structured dropout, 2019. URL https://arxiv.org/abs/1909.11556
2019 arXiv
-
[12]
and Tu, Y
Feng, Y. and Tu, Y. The inverse variance--flatness relation in stochastic gradient descent is critical for finding flat minima. Proceedings of the National Academy of Sciences, 118 0 (9), 2021
2021
-
[13]
Y., Roziere, B., Lopez-Paz, D., and Synnaeve, G
Gloeckle, F., Idrissi, B. Y., Roziere, B., Lopez-Paz, D., and Synnaeve, G. Better & faster large language models via multi-token prediction. In Forty-first International Conference on Machine Learning, 2024. URL https://openreview.net/forum?id=pEWAcejiU2
2024
-
[14]
Training large language models to reason in a continuous latent space, 2024
Hao, S., Sukhbaatar, S., Su, D., Li, X., Hu, Z., Weston, J., and Tian, Y. Training large language models to reason in a continuous latent space, 2024. URL https://arxiv.org/abs/2412.06769
2024 arXiv
-
[15]
and Su, W
He, H. and Su, W. J. A Law of Next-Token Prediction in Large Language Models , 2024. URL https://arxiv.org/abs/2408.13442v1
2024 arXiv
-
[16]
What matters in transformers? not all attention is needed, 2024
He, S., Sun, G., Shen, Z., and Li, A. What matters in transformers? not all attention is needed, 2024. URL https://arxiv.org/abs/2406.15786
2024 arXiv
-
[17]
Pretrained transformers improve out-of-distribution robustness
Hendrycks, D., Liu, X., Wallace, E., Dziedzic, A., Krishnan, R., and Song, D. Pretrained transformers improve out-of-distribution robustness. In Jurafsky, D., Chai, J., Schluter, N., and Tetreault, J. (eds.), Proceedings of the 58th Annual Meeting of the Association for Comput...
2020 doi
-
[18]
and Schmidhuber, J
Hochreiter, S. and Schmidhuber, J. Flat minima. Neural computation, 9 0 (1): 0 1--42, 1997
1997
-
[19]
R., Kailkhura, B., Schwarzschild, A., Saha, A., Goldblum, M., Geiping, J., and Goldstein, T
Jain, N., yeh Chiang, P., Wen, Y., Kirchenbauer, J., Chu, H.-M., Somepalli, G., Bartoldson, B. R., Kailkhura, B., Schwarzschild, A., Saha, A., Goldblum, M., Geiping, J., and Goldstein, T. Neftune: Noisy embeddings improve instruction finetuning, 2023. URL https://arxiv.org/abs...
2023 arXiv
-
[20]
S., Mudigere, D., Nocedal, J., Smelyanskiy, M., and Tang, P
Keskar, N. S., Mudigere, D., Nocedal, J., Smelyanskiy, M., and Tang, P. T. P. On large-batch training for deep learning: Generalization gap and sharp minima. In International Conference on Learning Representations, 2017. URL https://openreview.net/forum?id=H1oyRlYgg
2017
-
[21]
N., Hellmann, S., Morsey, M., Van Kleef, P., Auer, S., et al
Lehmann, J., Isele, R., Jakob, M., Jentzsch, A., Kontokostas, D., Mendes, P. N., Hellmann, S., Morsey, M., Van Kleef, P., Auer, S., et al. Dbpedia--a large-scale, multilingual knowledge base extracted from wikipedia. Semantic web, 6 0 (2): 0 167--195, 2015
2015
-
[22]
J., Xing, E., and Caruana, R
Lengerich, B. J., Xing, E., and Caruana, R. Dropout as a regularizer of interaction effects. In International Conference on Artificial Intelligence and Statistics, pp.\ 7550--7564. PMLR, 2022
2022
-
[23]
Dropkey, 2023
Li, B., Hu, Y., Nie, X., Han, C., Jiang, X., Guo, T., and Liu, L. Dropkey, 2023. URL https://arxiv.org/abs/2208.02646
2023 arXiv
-
[24]
Challenging large language models with new tasks: A study on their adaptability and robustness
Li, C., Tian, Y., Zerong, Z., Song, Y., and Xia, F. Challenging large language models with new tasks: A study on their adaptability and robustness. In Ku, L.-W., Martins, A., and Srikumar, V. (eds.), Findings of the Association for Computational Linguistics: ACL 2024, pp.\ 814...
2024 doi
-
[25]
Visualizing the loss landscape of neural nets
Li, H., Xu, Z., Taylor, G., Studer, C., and Goldstein, T. Visualizing the loss landscape of neural nets. In Bengio, S., Wallach, H., Larochelle, H., Grauman, K., Cesa-Bianchi, N., and Garnett, R. (eds.), Advances in Neural Information Processing Systems, volume 31. Curran Asso...
2018
-
[26]
E., Singh Rawat, A., and Oymak, S
Li, Y., Huang, Y., Ildiz, M. E., Singh Rawat, A., and Oymak, S. Mechanics of next token prediction with self-attention. In Dasgupta, S., Mandt, S., and Li, Y. (eds.), Proceedings of The 27th International Conference on Artificial Intelligence and Statistics, volume 238 of Proc...
2024
-
[27]
Rho-1: Not all tokens are what you need, 2025
Lin, Z., Gou, Z., Gong, Y., Liu, X., Shen, Y., Xu, R., Lin, C., Yang, Y., Jiao, J., Duan, N., and Chen, W. Rho-1: Not all tokens are what you need, 2025. URL https://arxiv.org/abs/2404.07965
2025 arXiv
-
[28]
M., Li, Z., and Ma, T
Liu, H., Xie, S. M., Li, Z., and Ma, T. Same pre-training loss, better downstream: Implicit bias matters for language models. In International Conference on Machine Learning, pp.\ 22188--22214. PMLR, 2023
2023
-
[29]
and Ying, L
Ma, C. and Ying, L. On linear stability of sgd and input-smoothness of neural networks. Advances in Neural Information Processing Systems, 34: 0 16805--16817, 2021
2021
-
[30]
Next-token prediction capacity: general upper bounds and a lower bound for transformers, 2024
Madden, L., Fox, C., and Thrampoulidis, C. Next-token prediction capacity: general upper bounds and a lower bound for transformers, 2024. URL https://arxiv.org/abs/2405.13718
2024
-
[31]
On the implicit bias of dropout
Mianjy, P., Arora, R., and Vidal, R. On the implicit bias of dropout. In International Conference on Machine Learning, pp.\ 3540--3548. PMLR, 2018
2018
-
[32]
S., and Baral, C
Mishra, S., Sachdeva, B. S., and Baral, C. Pretrained transformers do not always improve robustness, 2022. URL https://arxiv.org/abs/2210.07663
2022 arXiv
-
[33]
and Samwald, M
Moradi, M. and Samwald, M. Evaluating the robustness of neural language models to input perturbations. In Moens, M.-F., Huang, X., Specia, L., and Yih, S. W.-t. (eds.), Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, pp.\ 1558--1570, Onl...
2021 doi
-
[34]
Power-law escape rate of sgd
Mori, T., Ziyin, L., Liu, K., and Ueda, M. Power-law escape rate of sgd. arXiv preprint arXiv:2105.09557, 2021
2021 arXiv
-
[35]
Logicinference: A new dataset for teaching logical inference to seq2seq models, 2022
Ontanon, S., Ainslie, J., Cvicek, V., and Fisher, Z. Logicinference: A new dataset for teaching logical inference to seq2seq models, 2022. URL https://arxiv.org/abs/2203.15099
2022 arXiv
-
[36]
and Narasimhan, K
Radford, A. and Narasimhan, K. Improving language understanding by generative pre-training. 2018. URL https://api.semanticscholar.org/CorpusID:49313245
2018
-
[37]
Language models are unsupervised multitask learners
Radford, A., Wu, J., Child, R., Luan, D., Amodei, D., and Sutskever, I. Language models are unsupervised multitask learners. 2019
2019
-
[38]
R obust LR : A diagnostic benchmark for evaluating logical robustness of deductive reasoners
Sanyal, S., Liao, Z., and Ren, X. R obust LR : A diagnostic benchmark for evaluating logical robustness of deductive reasoners. In Goldberg, Y., Kozareva, Z., and Zhang, Y. (eds.), Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, pp.\ 961...
2022 doi
-
[39]
and He, H
Saparov, A. and He, H. Language models are greedy reasoners: A systematic formal analysis of chain-of-thought. In The Eleventh International Conference on Learning Representations, 2023. URL https://openreview.net/forum?id=qFVVBzXxR2V
2023
-
[40]
Stepgame: A new benchmark for robust multi-hop spatial reasoning in texts
Shi, Z., Zhang, Q., and Lipani, A. Stepgame: A new benchmark for robust multi-hop spatial reasoning in texts. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pp.\ 11321--11329, Jun. 2022. doi:10.1609/aaai.v36i10.21383. URL https://ojs.aaai.org/inde...
2022 doi
-
[41]
Sinha, K., Sodhani, S., Dong, J., Pineau, J., and Hamilton, W. L. CLUTRR : A diagnostic benchmark for inductive reasoning from text. In Inui, K., Jiang, J., Ng, V., and Wan, X. (eds.), Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and t...
2019 doi
-
[42]
P roof W riter: Generating implications, proofs, and abductive statements over natural language
Tafjord, O., Dalvi, B., and Clark, P. P roof W riter: Generating implications, proofs, and abductive statements over natural language. In Zong, C., Xia, F., Li, W., and Navigli, R. (eds.), Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021, pp.\ 3621--3...
2021 doi
-
[43]
Memorisation versus generalisation in pre-trained language models
T \"a nzer, M., Ruder, S., and Rei, M. Memorisation versus generalisation in pre-trained language models. In Muresan, S., Nakov, P., and Villavicencio, A. (eds.), Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), p...
2022 doi
-
[44]
Implicit optimization bias of next-token prediction in linear models
Thrampoulidis, C. Implicit optimization bias of next-token prediction in linear models. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[45]
An empirical study on robustness to spurious correlations using pre-trained language models
Tu, L., Lalwani, G., Gella, S., and He, H. An empirical study on robustness to spurious correlations using pre-trained language models. Transactions of the Association for Computational Linguistics, 8: 0 621--633, 10 2020. ISSN 2307-387X. doi:10.1162/tacl_a_00335. URL https://...
2020 doi
-
[46]
L ogic A sker: Evaluating and improving the logical reasoning ability of large language models
Wan, Y., Wang, W., Yang, Y., Yuan, Y., Huang, J.-t., He, P., Jiao, W., and Lyu, M. L ogic A sker: Evaluating and improving the logical reasoning ability of large language models. In Al-Onaizan, Y., Bansal, M., and Chen, Y.-N. (eds.), Proceedings of the 2024 Conference on Empir...
2024 doi
-
[47]
Are large language models really robust to word-level perturbations? In Socially Responsible Language Modelling Research, 2023
Wang, H., Ma, G., Yu, C., Gui, N., Zhang, L., Huang, Z., Ma, S., Chang, Y., Zhang, S., Shen, L., Wang, X., Zhao, P., and Tao, D. Are large language models really robust to word-level perturbations? In Socially Responsible Language Modelling Research, 2023. URL https://openrevi...
2023
-
[48]
The implicit and explicit regularization effects of dropout
Wei, C., Kakade, S., and Ma, T. The implicit and explicit regularization effects of dropout. In International Conference on Machine Learning, pp.\ 10181--10192. PMLR, 2020
2020
-
[49]
M., van Merriënboer, B., Joulin, A., and Mikolov, T
Weston, J., Bordes, A., Chopra, S., Rush, A. M., van Merriënboer, B., Joulin, A., and Mikolov, T. Towards ai-complete question answering: A set of prerequisite toy tasks, 2015. URL https://arxiv.org/abs/1502.05698
2015 arXiv
-
[50]
On the noisy gradient descent that generalizes as sgd
Wu, J., Hu, W., Xiong, H., Huan, J., Braverman, V., and Zhu, Z. On the noisy gradient descent that generalizes as sgd. In International Conference on Machine Learning, pp.\ 10367--10376. PMLR, 2020
2020
-
[51]
How sgd selects the global minima in over-parameterized learning: A dynamical stability perspective
Wu, L., Ma, C., et al. How sgd selects the global minima in over-parameterized learning: A dynamical stability perspective. Advances in Neural Information Processing Systems, 31, 2018
2018
-
[52]
Unidrop: A simple yet effective technique to improve transformer without extra cost, 2021
Wu, Z., Wu, L., Meng, Q., Xia, Y., Xie, S., Qin, T., Dai, X., and Liu, T.-Y. Unidrop: A simple yet effective technique to improve transformer without extra cost, 2021. URL https://arxiv.org/abs/2104.04946
2021 arXiv
-
[53]
D., and Potts, C
Wu, Z., Manning, C. D., and Potts, C. R e COGS : How incidental details of a logical form overshadow an evaluation of semantic interpretation. Transactions of the Association for Computational Linguistics, 11: 0 1719--1733, 2023. doi:10.1162/tacl_a_00623. URL https://aclanthol...
2023 doi
-
[54]
A diffusion theory for deep learning dynamics: Stochastic gradient descent exponentially favors flat minima
Xie, Z., Sato, I., and Sugiyama, M. A diffusion theory for deep learning dynamics: Stochastic gradient descent exponentially favors flat minima. arXiv preprint arXiv:2002.03495, 2020
2002 arXiv
-
[55]
URL http://www.yelp.com/ dataset_challenge
Yelp Dataset, 2014. URL http://www.yelp.com/ dataset_challenge
2014
-
[56]
Internlm-math: Open math large language models toward verifiable reasoning, 2024
Ying, H., Zhang, S., Li, L., Zhou, Z., Shao, Y., Fei, Z., Ma, Y., Hong, J., Liu, K., Wang, Z., Wang, Y., Wu, Z., Li, S., Zhou, F., Liu, H., Zhang, S., Zhang, W., Yan, H., Qiu, X., Wang, J., Chen, K., and Lin, D. Internlm-math: Open math large language models toward verifiable ...
2024 arXiv
-
[57]
Natural language reasoning, a survey
Yu, F., Zhang, H., Tiwari, P., and Wang, B. Natural language reasoning, a survey. ACM Comput. Surv., 56 0 (12), October 2024. ISSN 0360-0300. doi:10.1145/3664194. URL https://doi.org/10.1145/3664194
2024 doi
-
[58]
Dropattention: A regularization method for fully-connected self-attention networks, 2019
Zehui, L., Liu, P., Huang, L., Chen, J., Qiu, X., and Huang, X. Dropattention: A regularization method for fully-connected self-attention networks, 2019. URL https://arxiv.org/abs/1907.11065
2019 arXiv
-
[59]
Dropdim: A regularization method for transformer networks
Zhang, H., Qu, D., Shao, K., and Yang, X. Dropdim: A regularization method for transformer networks. IEEE Signal Processing Letters, 29: 0 474--478, 2022. doi:10.1109/LSP.2022.3140693
2022
-
[60]
H., Meng, T., Chang, K.-W., and Van den Broeck, G
Zhang, H., Li, L. H., Meng, T., Chang, K.-W., and Van den Broeck, G. On the paradox of learning to reason from data. In Elkind, E. (ed.), Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI-23 , pp.\ 3365--3373. International Joint...
2023 doi
-
[61]
and Xu, Z.-Q
Zhang, Z. and Xu, Z.-Q. J. Implicit regularization of dropout. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024
2024
-
[62]
Zhang, Z., Li, Y., Luo, T., and Xu, Z.-Q. J. Stochastic modified equations and dynamics of dropout algorithm. arXiv preprint arXiv:2305.15850, 2023 b
2023 arXiv
-
[63]
Zhang, Z., Lin, P., Wang, Z., Zhang, Y., and Xu, Z.-Q. J. Initialization is critical to whether transformers fit composite functions by inference or memorizing, 2024 a . URL https://arxiv.org/abs/2405.05409
2024 arXiv
-
[64]
Zhang, Z., Wang, Z., Yao, J., Zhou, Z., Li, X., E, W., and Xu, Z.-Q. J. Anchor function: a type of benchmark functions for studying language models, 2024 b . URL https://arxiv.org/abs/2401.08309
2024 arXiv
-
[65]
Implicit geometry of next-token prediction: From language sparsity patterns to model representations
Zhao, Y., Behnia, T., Vakilian, V., and Thrampoulidis, C. Implicit geometry of next-token prediction: From language sparsity patterns to model representations. In First Conference on Language Modeling, 2024. URL https://openreview.net/forum?id=qyilOnIRHI
2024
-
[66]
Scheduled D rop H ead: A regularization method for transformer models
Zhou, W., Ge, T., Wei, F., Zhou, M., and Xu, K. Scheduled D rop H ead: A regularization method for transformer models. In Cohn, T., He, Y., and Liu, Y. (eds.), Findings of the Association for Computational Linguistics: EMNLP 2020, pp.\ 1971--1980, Online, November 2020. Associ...
2020 doi
-
[67]
The anisotropic noise in stochastic gradient descent: Its behavior of escaping from sharp minima and regularization effects
Zhu, Z., Wu, J., Yu, B., Wu, L., and Ma, J. The anisotropic noise in stochastic gradient descent: Its behavior of escaping from sharp minima and regularization effects. In International Conference on Machine Learning, pp.\ 7654--7663. PMLR, 2019
2019
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.