REVIEW 3 major objections 6 minor 1 cited by
Pushing the boundary on Natural Language Inference
T0 review · 3 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read The paper tries to establish that reinforcement learning can replace labeled rationales in natural-language-inference training, using Group Relative Policy Optimization over a model's own chain-of-thought completions, and that this works…
desk verdict A solid, artifact-rich first look at GRPO-trained CoT for NLI; same-base gains are real, but the SOTA and robust-reasoning claims outrun the evidence. 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 mechanism is GRPO, a policy-gradient reinforcement-learning algorithm that samples a group of completions per prompt and computes a normalized advantage without requiring a critic model, paired with a KL-divergence penalty that keeps the policy close to the base model. LoRA and QLoRA make the fine-tuning parameter-efficient, while the prompt forces the model to emit a <think>...</think> explanation before an <answer>...</answer> label, and the reward is 1 for a correct label and 0 otherwise. Because the explanation itself is never supervised, the model explores its own rationales during training. The training data is ANLI Round 3 filtered to examples that a 7B model initially misses, which gives the group-advantage signal a nonzero spread and avoids wasted updates on already-solved examples.
What would settle it
If, on a newly constructed set of adversarial premise-hypothesis pairs that avoid annotation conventions, a GRPO-trained model shows no accuracy advantage over its untrained base, or if a version trained to output only the label without the required explanation matches its accuracy, then the claim that chain-of-thought reasoning is the source of the gains is refuted.
Extended reading notes
Core claim
The paper's central claim is that GRPO training with LoRA is an effective, memory-lean way to learn chain-of-thought reasoning for NLI without human-written rationales. Applying the GRPO objective to 7B, 14B, and 32B instruct models, while sampling online explanations and scoring only the final label, yields consistent gains over the untrained base on ANLI, Counter-NLI, HANS, NLI Diagnostic, SNLI, and MultiNLI. The 32B quantized model reaches 82.46% average accuracy across the selected sets and surpasses prior state-of-the-art results on 7 of 11 adversarial sets, or all of them under the authors' own replication of the competing method. The paper also claims that AWQ quantization costs only about a point of average accuracy after GRPO training, so aggressive compression does not erase the robustness gains.
Load-bearing premise
The reward scores only the final answer, so the sampled chain of thought is assumed to be genuine reasoning that causes the correct label; if the model is instead matching dataset-specific labeling conventions, the robustness gains will not transfer.
Editorial extensions
If this is right
- NLI training no longer depends on datasets with human explanation annotations, so harder adversarial corpora such as ANLI can be used directly as training data.
- A 32B quantized model fitting in 22GB of CUDA memory can deliver state-of-the-art adversarial NLI accuracy on a single 24GB or 48GB GPU.
- Quantization-induced accuracy drops shrink after GRPO training with higher LoRA ranks, so memory savings and reasoning quality are not necessarily in conflict.
- Larger base models generalize to adversarial benchmarks even before fine-tuning, suggesting that pretraining capacity sets the ceiling for what GRPO can unlock.
- If the claim holds, the accuracy-versus-model-size frontier for NLI shifts, making robust inference feasible at substantially lower compute budgets.
Reading between the lines
- Beyond the paper: because the reward never inspects the rationale, the method may be learning label conventions that hold on ANLI but not on genuinely novel adversarial data; the appendix's examples of logically invalid rationales that still match the gold label make this a live risk.
- Beyond the paper: one can test whether the chain of thought is causal by training a control that outputs only the label with the same reward; if the control matches GRPO accuracy, the explanation format is not the source of the gain.
- Beyond the paper: the reported flat completion lengths suggest that, unlike mathematics reinforcement learning, NLI gains come from better label selection rather than longer deliberation, so combining GRPO with a small supervised rationale signal could push robustness further.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes applying Group Relative Policy Optimization (GRPO), a reinforcement learning algorithm, to fine-tune large language models (Qwen2.5 7B, 14B, 32B) with LoRA/QLoRA for natural language inference, using the ANLI R3 training set filtered to examples missed by a 7B model. The model is prompted to emit a chain-of-thought before a final entailment/neutral/contradiction answer, and only the final label is rewarded. The authors report consistent accuracy gains over the same-base models across standard and adversarial NLI benchmarks, with the largest gains for the 32B AWQ-quantized model, which they claim surpasses state-of-the-art results on 7 of 11 adversarial sets (or all of them using their own replication of a competing method) within a 22GB memory footprint. The paper also analyzes training dynamics and includes an appendix with seven examples where the GRPO model's rationale is logically invalid despite matching the gold label.
Significance. If the central claims hold, the work is a useful empirical demonstration that GRPO-style RL with parameter-efficient fine-tuning can improve NLI accuracy on adversarial benchmarks, and the release of code, adapters, and the filtered training set is a strength that enables reproduction and extension. The same-base comparisons in Section 5.3 are internally consistent and show that GRPO improves average accuracy over the base Qwen models in most configurations. However, the paper's headline claims about 'robust reasoning' and 'state-of-the-art' performance are not yet supported: the reward does not verify the chain-of-thought, the paper's own Appendix E contains counterexamples to robust reasoning, and the SOTA comparison relies on outdated baselines and the authors' own unreplicated implementation of a competing method. The core empirical contribution is therefore sound but the interpretation overreaches.
major comments (3)
- [Abstract, Section 5.1, Table 2, Appendix B] The claim that the 32B AWQ model 'surpasses state-of-the-art results on 7 out of 11 adversarial sets—or on all of them considering our replication' is not adequately supported. Table 2 compares against RoBERTa-large baselines from 2020-2022 (e.g., ANLI r3 SOTA of 47.70%), which are not current state-of-the-art for these benchmarks. The 'all of them' variant rests on the authors' own replication of Kavumba et al. [1], reported in Appendix B, where the replication scores are far below the published numbers (e.g., 52.10% vs 81.80% on ANLI r1). Because the replication may itself be faulty, the authors are effectively both contestant and referee for this baseline. I recommend either using verified current leaderboard numbers, or clearly limiting the claim to 'exceeds the listed baselines' and removing the 'all of them' phrasing.
- [Section 3.2, Section 5.7, Appendix E] The paper's central motivation is that GRPO enables chain-of-thought learning and 'robust reasoning' (Abstract, Section 1), but the reward function in Section 3.2 scores only the final label and does not verify the sampled rationale. The paper's own Appendix E shows multiple cases where the GRPO-trained 32B model produces logically invalid rationales (e.g., 'optional' treated as 'not needed' in Example 1; manslaughter treated as entailing murder in Example 6; misattribution treated as contradiction in Example 7) yet the final label matches the gold label. This indicates the policy can increase reward while learning dataset-specific labeling conventions rather than general inference, which directly undermines the 'robust reasoning' claim. Since the adapters are public, the authors should either demonstrate CoT fidelity (e.g., a consistency or human-evaluation study) or substantially soften the robustness claim in the abstract and conclusions.
- [Section 3.3] All training runs use the ANLI R3 subset filtered to examples missed by a Qwen2.5-7B-Instruct model ('one-missed'). This filter is a design choice that affects which examples produce nonzero advantages, and no sensitivity analysis is provided (e.g., unfiltered R3, a different filter model, or a filter based on the same model being adapted). It is possible that the reported gains are partially an artifact of this particular selection. I recommend ablating the filter or at least reporting the size of the filtered set and training on unfiltered R3 as a control.
minor comments (6)
- [Section 3.2] The sentence 'predictions that contradict the explanation are rarely sampled' is asserted without supporting statistics; if the authors have such data, it should be reported, otherwise the claim should be removed.
- [Listing 1, Appendix D] The prompt template contains obvious typos such as 'f oll ow ing' and 'de te rm ine'; these should be corrected in the final version.
- [Tables 4 and 5] The column layout in Tables 4 and 5 is dense and hard to read; restructuring them (e.g., separate columns for No-AWQ and AWQ with a clear Δ) would improve clarity.
- [Section 5.1] The phrase '7 out of 11 adversarial sets' is ambiguous because Table 2 shows the 32B model beating all listed baselines on all 11 adversarial rows; the abstract should specify that the '7 out of 11' refers to comparison with the reported numbers of Kavumba et al. [1].
- [Section 5.3] The 7B (AWQ) results in Table 3 use batch size 8, while Table 2 uses batch size 32 (as noted in the caption of Table 2); this difference should be mentioned in Section 5.3 to avoid confusion.
- [Appendix B] The replication section would be stronger if it reported the training setup for the replication (e.g., learning rate, number of steps, checkpoint selection) and not only the final scores, so readers can judge the replication's fidelity.
Circularity Check
No significant circularity: the core results are external-benchmark measurements, with only a disclosed replication caveat that is a comparison-protocol concern rather than a circular derivation.
full rationale
The paper does not derive its central results from fitted parameters or from self-citations. The GRPO reward in Section 3.2 scores only the final label, and the training signal is the gold label on a filtered ANLI R3 training set, while evaluation is performed on held-out public benchmarks (SNLI, MultiNLI, ANLI R1-R3, Counter-NLI, HANS, NLI-Diagnostic). No predicted quantity is equivalent by construction to a fitted input. The Appendix E examples show that the trained model can produce logically invalid rationales while matching gold labels; this is a validity threat to the robust-reasoning claim, not a circularity, because the reported accuracies are still measured against external labels. The 'all 11 adversarial sets' claim depends on the authors' own replication of prior work [1], disclosed in Appendix B; this is a fairness-of-comparison issue rather than a derivation-from-inputs issue, and the paper explicitly separates reported results from replication results in Table 7. There are no load-bearing self-citations or imported uniqueness theorems. The paper is self-contained against external benchmarks, so the appropriate circularity score is 0.
Assumptions & free parameters
free parameters (5)
- LoRA rank for reported models =
64
- GRPO KL regularization coefficient beta =
0.01
- ANLI R3 one-missed filter =
examples where Qwen2.5-7B-Instruct predicts incorrectly
- Batch size =
32 for 7B, 8 for 14B and 32B
- Learning rate =
5e-6
assumptions (5)
- domain assumption Qwen2.5 base models have sufficient semantic and logical knowledge from pretraining to benefit from GRPO on NLI.
- domain assumption A reward based only on the final label is an adequate training signal for NLI.
- domain assumption The group-relative advantage without division by standard deviation is stable for this setting.
- domain assumption Gold labels in the evaluation sets are reliable.
- domain assumption The evaluation benchmarks have not leaked into the pretraining corpora.
Cite this review
Pith. "Pith review of Pushing the boundary on Natural Language Inference." pith.science (2026). https://pith.science/paper/JQH43LAQ
@misc{pith2026250418376,
author = {Pith},
title = {Pith review of: Pushing the boundary on Natural Language Inference},
year = {2026},
howpublished = {\url{https://pith.science/paper/JQH43LAQ}},
note = {Machine review of arXiv:2504.18376}
}
abstract
Natural Language Inference (NLI) is a central task in natural language understanding with applications in fact-checking, question answering, and information retrieval. Despite its importance, current NLI systems heavily rely on supervised learning with datasets that often contain annotation artifacts and biases, limiting generalization and real-world applicability. In this work, we apply a reinforcement learning-based approach using Group Relative Policy Optimization (GRPO) for Chain-of-Thought (CoT) learning in NLI, eliminating the need for labeled rationales and enabling this type of training on more challenging datasets such as ANLI. We fine-tune 7B, 14B, and 32B language models using parameter-efficient techniques (LoRA and QLoRA), demonstrating strong performance across standard and adversarial NLI benchmarks. Our 32B AWQ-quantized model surpasses state-of-the-art results on 7 out of 11 adversarial sets$\unicode{x2013}$or on all of them considering our replication$\unicode{x2013}$within a 22GB memory footprint, showing that robust reasoning can be retained under aggressive quantization. This work provides a scalable and practical framework for building robust NLI systems without sacrificing inference quality.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 1 Pith paper
-
MERGE: Minimal Expression-Replacement GEneralization Test for Natural Language Inference
A new automatic method for creating minimal reasoning-preserving variants of NLI problems shows that 14 models drop 4 to 20 percent in accuracy on those variants.
Reference graph
Works this paper leans on
-
[2]
A Large Annotated Corpus for Learning Natural Language Inference
S. R. Bowman, G. Angeli, C. Potts, and C. D. Manning. “A Large Annotated Corpus for Learning Natural Language Inference”. In: Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing. Ed. by L. Màrquez, C. Callison-Burch, and J. Su. Lisbon, Portugal: Association for Computational Linguistics, Sept. 2015, pp. 632–642. DOI: 10....
-
[3]
E-SNLI: Natural Language Inference with Natural Language Explanations
O.-M. Camburu, T. Rocktäschel, T. Lukasiewicz, and P. Blunsom. “E-SNLI: Natural Language Inference with Natural Language Explanations”. In: Advances in Neural Information Processing Systems . Ed. by S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett. V ol. 31. Curran Asso- ciates, Inc., 2018. URL: https : / / proceedings . n...
work page 2018
-
[4]
A Broad-Coverage Challenge Corpus for Sentence Understanding through Inference
A. Williams, N. Nangia, and S. Bowman. “A Broad-Coverage Challenge Corpus for Sentence Understanding through Inference”. In: Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers). Proceedings of the 2018 Conference of the North American Chapter...
2018
-
[5]
Performance Impact Caused by Hidden Bias of Training Data for Recognizing Textual Entailment
M. Tsuchiya. “Performance Impact Caused by Hidden Bias of Training Data for Recognizing Textual Entailment”. In: Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018). Ed. by N. Calzolari et al. Miyazaki, Japan: European Language Resources Association (ELRA), May 2018. URL: https://aclanthology.org/L18-1239/
work page 2018
-
[6]
Annotation Artifacts in Natural Language Inference Data
S. Gururangan, S. Swayamdipta, O. Levy, R. Schwartz, S. Bowman, and N. A. Smith. “Annotation Artifacts in Natural Language Inference Data”. In: Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers). Proceedings of the 2018 Conference of the No...
2018
-
[7]
Hypothesis Only Baselines in Natural Language Inference
A. Poliak, J. Naradowsky, A. Haldar, R. Rudinger, and B. Van Durme. “Hypothesis Only Baselines in Natural Language Inference”. In: Proceedings of the Seventh Joint Conference on Lexical and Computational Semantics. Proceedings of the Seventh Joint Conference on Lexical and Computational Semantics. New Orleans, Louisiana: Association for Computational Ling...
-
[8]
GLUE: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding
A. Wang, A. Singh, J. Michael, F. Hill, O. Levy, and S. Bowman. “GLUE: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding”. In: Proceedings of the 2018 EMNLP Workshop BlackboxNLP: Analyzing and Interpreting Neural Networks for NLP. Proceedings of the 2018 EMNLP Workshop BlackboxNLP: Analyzing and Interpreting Neural Networks f...
-
[9]
Right for the Wrong Reasons: Diagnosing Syntactic Heuristics in Natural Language Inference
T. McCoy, E. Pavlick, and T. Linzen. “Right for the Wrong Reasons: Diagnosing Syntactic Heuristics in Natural Language Inference”. In: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics. Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics. Florence, Italy: Association for Computation...
Show all 41 references
-
[10]
Learning the Difference That Makes a Difference with Counterfactually- Augmented Data
D. Kaushik, E. Hovy, and Z. Lipton. “Learning the Difference That Makes a Difference with Counterfactually- Augmented Data”. In: International Conference on Learning Representations . 2020. URL: https : / / openreview.net/forum?id=Sklgs0NFvr
2020
-
[11]
Adversarial NLI: A New Benchmark for Natural Language Understanding
Y . Nie, A. Williams, E. Dinan, M. Bansal, J. Weston, and D. Kiela. “Adversarial NLI: A New Benchmark for Natural Language Understanding”. In: Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics. Proceedings of the 58th Annual Meeting of the...
2020 doi
-
[12]
W ANLI: Worker and AI Collaboration for Natural Language Inference Dataset Creation
A. Liu, S. Swayamdipta, N. A. Smith, and Y . Choi. “W ANLI: Worker and AI Collaboration for Natural Language Inference Dataset Creation”. In: Findings of the Association for Computational Linguistics: EMNLP 2022. Abu Dhabi, United Arab Emirates: Association for Computational L...
2022
-
[13]
Attention Is All You Need
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin. “Attention Is All You Need”. In: Advances in Neural Information Processing Systems. V ol. 30. Curran Associates, Inc., 2017
2017
-
[14]
BERT: Pre-Training of Deep Bidirectional Transformers for Language Understanding
J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova. “BERT: Pre-Training of Deep Bidirectional Transformers for Language Understanding”. In: Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technolog...
2019 doi
-
[15]
Y . Liu, M. Ott, N. Goyal, J. Du, M. Joshi, D. Chen, O. Levy, M. Lewis, L. Zettlemoyer, and V . Stoyanov. RoBERTa: A Robustly Optimized BERT Pretraining Approach. July 26, 2019. arXiv: 1907.11692 [cs]. URL: http://arxiv.org/abs/1907.11692 (visited on 09/01/2023). Pre-published
2019 arXiv
-
[16]
DeBERTa: Decoding-Enhanced BERT with Disentangled Attention
P. He, X. Liu, J. Gao, and W. Chen. “DeBERTa: Decoding-Enhanced BERT with Disentangled Attention”. In: International Conference on Learning Representations. 2021. URL: https://openreview.net/forum?id= XPZIaotutsD
2021
-
[17]
Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer
C. Raffel, N. Shazeer, A. Roberts, K. Lee, S. Narang, M. Matena, Y . Zhou, W. Li, and P. J. Liu. “Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer”. In: Journal of Machine Learning Research 21.1 (Jan. 2020). ISSN : 1532-4435
2020
-
[18]
Multitask Prompted Training Enables Zero-Shot Task Generalization
V . Sanh et al. “Multitask Prompted Training Enables Zero-Shot Task Generalization”. In:International Confer- ence on Learning Representations. 2022. URL: https://openreview.net/forum?id=9Vrb9D0WI4
2022
-
[19]
Using Natural Language Explanations to Improve Robustness of In-Context Learning
X. He, Y . Wu, O.-M. Camburu, P. Minervini, and P. Stenetorp. “Using Natural Language Explanations to Improve Robustness of In-Context Learning”. In: Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) . Proceedings o...
2024
-
[20]
TRUE: Re-Evaluating Factual Consistency Evaluation
O. Honovich, R. Aharoni, J. Herzig, H. Taitelbaum, D. Kukliansy, V . Cohen, T. Scialom, I. Szpektor, A. Hassidim, and Y . Matias. “TRUE: Re-Evaluating Factual Consistency Evaluation”. In:Proceedings of the Second DialDoc Workshop on Document-Grounded Dialogue and Conversationa...
2022
-
[21]
HypoNLI: Exploring the Artificial Patterns of Hypothesis-Only Bias in Natural Language Inference
T. Liu, Z. Xin, B. Chang, and Z. Sui. “HypoNLI: Exploring the Artificial Patterns of Hypothesis-Only Bias in Natural Language Inference”. In: Proceedings of the Twelfth Language Resources and Evaluation Conference. Ed. by N. Calzolari et al. Marseille, France: European Languag...
2020
-
[22]
Adversarial Filters of Dataset Biases
R. L. Bras, S. Swayamdipta, C. Bhagavatula, R. Zellers, M. Peters, A. Sabharwal, and Y . Choi. “Adversarial Filters of Dataset Biases”. In: Proceedings of the 37th International Conference on Machine Learning . Ed. by H. D. III and A. Singh. V ol. 119. Proceedings of Machine L...
2020
-
[23]
Generating Data to Mitigate Spurious Correlations in Natural Language Inference Datasets
Y . Wu, M. Gardner, P. Stenetorp, and P. Dasigi. “Generating Data to Mitigate Spurious Correlations in Natural Language Inference Datasets”. In: Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). Proceedings of the ...
2022
-
[24]
An Empirical Study on Model-Agnostic Debiasing Strategies for Robust Natural Language Inference
T. Liu, Z. Xin, X. Ding, B. Chang, and Z. Sui. “An Empirical Study on Model-Agnostic Debiasing Strategies for Robust Natural Language Inference”. In: Proceedings of the 24th Conference on Computational Natural Language Learning. Proceedings of the 24th Conference on Computatio...
2020 doi
-
[25]
Info{BERT}: Improving Robustness of Language Models from an Information Theoretic Perspective
B. Wang, S. Wang, Y . Cheng, Z. Gan, R. Jia, B. Li, and J. Liu. “Info{BERT}: Improving Robustness of Language Models from an Information Theoretic Perspective”. In: International Conference on Learning Representations
-
[26]
Supervising Model Attention with Human Explanations for Robust Natural Language Inference
J. Stacey, Y . Belinkov, and M. Rei. “Supervising Model Attention with Human Explanations for Robust Natural Language Inference”. In: Proceedings of the AAAI Conference on Artificial Intelligence . V ol. 36. 10. 2022, pp. 11349–11357
2022
-
[27]
Narang, C
S. Narang, C. Raffel, K. Lee, A. Roberts, N. Fiedel, and K. Malkan. WT5?! Training Text-to-Text Models to Explain Their Predictions. Apr. 30, 2020. DOI: 10.48550/arXiv.2004.14546 . arXiv: 2004.14546 [cs] . URL: http://arxiv.org/abs/2004.14546 (visited on 04/09/2025). Pre-published
-
[28]
Chain of Thought Prompting Elicits Reasoning in Large Language Models
J. Wei, X. Wang, D. Schuurmans, M. Bosma, b. ichter, F. Xia, E. H. Chi, Q. V . Le, and D. Zhou. “Chain of Thought Prompting Elicits Reasoning in Large Language Models”. In: Advances in Neural Information Processing Systems. Ed. by A. H. Oh, A. Agarwal, D. Belgrave, and K. Cho....
2022
-
[29]
MathPile: A Billion-Token-Scale Pretraining Corpus for Math
Z. Wang, X. Li, R. Xia, and P. Liu. “MathPile: A Billion-Token-Scale Pretraining Corpus for Math”. In: Advances in Neural Information Processing Systems. Ed. by A. Globerson, L. Mackey, D. Belgrave, A. Fan, U. Paquet, J. Tomczak, and C. Zhang. V ol. 37. Curran Associates, Inc....
2024
-
[30]
MAmmoTH: Building Math Generalist Models through Hybrid Instruction Tuning
X. Yue, X. Qu, G. Zhang, Y . Fu, W. Huang, H. Sun, Y . Su, and W. Chen. “MAmmoTH: Building Math Generalist Models through Hybrid Instruction Tuning”. In: The Twelfth International Conference on Learning Representations. 2024. URL: https://openreview.net/forum?id=yLClGs770I
2024
-
[31]
DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning
DeepSeek-AI et al. DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning . Jan. 22, 2025. DOI: 10.48550/arXiv.2501.12948 . arXiv: 2501.12948 [cs] . URL: http://arxiv.org/ abs/2501.12948 (visited on 01/28/2025). Pre-published
-
[32]
Shao et al
Z. Shao et al. DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models. Apr. 27,
- [33]
-
[34]
LoRA: Low-Rank Adaptation of Large Language Models
E. J. Hu, y. shen, P. Wallis, Z. Allen-Zhu, Y . Li, S. Wang, L. Wang, and W. Chen. “LoRA: Low-Rank Adaptation of Large Language Models”. In: International Conference on Learning Representations. 2022. URL: https: //openreview.net/forum?id=nZeVKeeFYf9
2022
-
[35]
QLoRA: Efficient Finetuning of Quantized LLMs
T. Dettmers, A. Pagnoni, A. Holtzman, and L. Zettlemoyer. “QLoRA: Efficient Finetuning of Quantized LLMs”. In: Thirty-Seventh Conference on Neural Information Processing Systems. 2023. URL: https://openreview. net/forum?id=OUIFPHEgJU
2023
-
[36]
AWQ: Activation-Aware Weight Quantization for on-Device LLM Compression and Acceleration
J. Lin, J. Tang, H. Tang, S. Yang, W. -M. Chen, W. -C. Wang, G. Xiao, X. Dang, C. Gan, and S. Han. “AWQ: Activation-Aware Weight Quantization for on-Device LLM Compression and Acceleration”. In:Pro- ceedings of Machine Learning and Systems . Ed. by P. Gibbons, G. Pekhimenko, a...
2024
- [37]
-
[38]
Inference-Time Decontamination: Reusing Leaked Benchmarks for Large Language Model Evaluation
Q. Zhu, Q. Cheng, R. Peng, X. Li, R. Peng, T. Liu, X. Qiu, and X. Huang. “Inference-Time Decontamination: Reusing Leaked Benchmarks for Large Language Model Evaluation”. In: Findings of the Association for Computational Linguistics: EMNLP 2024. Findings of the Association for ...
2024
-
[42]
optional
Miami, Florida, USA: Association for Computational Linguistics, 2024, pp. 9113–9129. DOI: 10.18653/ v1 / 2024 . findings - emnlp . 532. URL: https : / / aclanthology . org / 2024 . findings - emnlp . 532 (visited on 04/25/2025). 16 Pushing the boundary on NLI A Experiment deta...
2024
-
[2021]
URL: https://openreview.net/forum?id=hpH98mK5Puk
- [2024]
-
[6860]
URL: https://aclanthology.org/2020.lrec-1.846/
ISBN : 979-10-95546-34-4. URL: https://aclanthology.org/2020.lrec-1.846/
2020
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.