Pith. sign in

REVIEW 3 cited by

The Hallucination Tax of Reinforcement Finetuning

T0 review · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Standard RFT sharply reduces LLM refusal on unanswerable questions, and adding 10% synthetic unanswerable math during RFT restores refusal with small accuracy losses.

arxiv 2505.13988 v1 pith:CUMTZLPD submitted 2025-05-20 cs.CL

classification cs.CL
keywords unanswerablemathmodelmodelsrefusalapproachbehaviorfinetuning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Large language models are often made better at math by reinforcement finetuning: the model gets a reward for correct answers, so it gradually learns to produce more correct solutions. This paper studies a side effect. When a question is under-specified, such as a missing number or a vague condition, a trained model tends to invent an assumption and answer anyway rather than saying it does not know. The authors call this the hallucination tax and measure it before and after training on four models. Refusal rates drop sharply on three unanswerable-question benchmarks, including a factual QA benchmark far from math.

To fix the problem, they build a dataset called SUM. They take competition math problems and modify them with five recipes: delete key information, make information ambiguous, add impossible conditions, mention objects that are absent from the problem, or delete the question itself. During reinforcement finetuning, they replace 10% of the training data with these unanswerable variants. The reward function already gives credit for correct answers; they extend it so that refusing an unanswerable problem with a specific "I don't know" phrase also earns credit. After training, models refuse more often on the SUM test set, on human-written unanswerable math problems, and on factual unanswerable questions, while math accuracy on solvable problems drops only a few points.

The main caveat is that models are literally rewarded for refusing on exactly the kind of data used to test them, and the paper does not measure whether they start refusing too many answerable factual questions. So the stronger claim that models genuinely reason about their own uncertainty is not fully proven, but the training recipe itself is simple and likely useful.

Extended reading notes

Core claim

The paper claims that standard reinforcement finetuning (RFT) degrades refusal behavior: "standard RFT training could reduce model refusal rates by more than 80%, which significantly increases model's tendency to hallucinate," and that "incorporating just 10% SUM during RFT substantially restores appropriate refusal behavior, with minimal accuracy trade-offs on solvable tasks." If correct, RFT for math improves accuracy at the cost of epistemic humility, and a simple 10% synthetic unanswerable-data mix recovers most of that humility while preserving most accuracy, including transfer to out-of-domain math and to factual unanswerable questions.

Load-bearing premise

The paper's strongest generalization claim rests on the unstated premise that higher refusal rates on unanswerable benchmarks reflect genuine uncertainty reasoning rather than a generic over-refusal tendency. The evaluation in Table 2 measures refusal on unanswerable sets but never measures false refusals on answerable factual questions, and the paper does not analyze chain-of-thought traces to show the model actually detected missing information. If the model simply learned a superficial cue to refuse, the SelfAware gains would come with unacceptable over-refusal in real applications. This premise enters in Section 5.2, Finding 2, where the authors interpret the SelfAware refusal gain as evidence that models "leverage inference-time compute to reason about their own uncertainty."

Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Assumptions & free parameters 1 free parameters · 4 assumptions · 2 invented entities

The paper's claims are empirical rather than derivational. The main free parameter is the 10% mixing ratio, selected from a small scan used in the headline evaluation. The key axioms are about dataset quality and the validity of refusal-rate as a trustworthiness measure. The paper invents a coined construct, the hallucination tax, and a new dataset, but no new physical or mathematical entity. The reward function in Eq. (3) directly encodes the target refusal behavior, which is why the in-distribution improvement is partly circular and the cross-domain transfer carries the independent evidential weight.

free parameters (1)
  • SUM mixing ratio = 10% (with 0%, 1%, 30%, 50% also evaluated)
    The headline result in Table 2 uses a 10% replacement ratio, selected after scanning five ratios in Section 5.3. This is a hyperparameter chosen by the authors on the same refusal/accuracy trade-off axes used for evaluation, without a described held-out validation split.
assumptions (4)
  • domain assumption Unanswerable-problem refusal is a valid proxy for hallucination risk in deployed LLMs.
    The paper equates refusal on unanswerable test questions with trustworthiness and treats higher refusal rates as better, without validating that this transfers to other hallucination modes or to answerable-but-uncertain settings.
  • domain assumption o3-mini generated modifications preserve genuine unanswerability at the reported correctness rate.
    Data quality rests on a single generative model and two-author manual review with Cohen's kappa of 0.519, described as moderate agreement in Section 3.3. Incorrect unanswerable labels would degrade both training signal and SUM test validity.
  • ad hoc to paper The reward function in Eq. (3) correctly balances correctness and abstention.
    The 1/0 reward with exact-match detection of "I don't know" is chosen by the authors and is not benchmarked against alternative reward designs, such as soft penalties or verbalized-uncertainty rewards.
  • domain assumption The labels in UMWP and SelfAware are reliable ground truth for unanswerability.
    The evaluation treats these human-annotated benchmarks as correct, and the results are only as trustworthy as the benchmark labels. This is a standard but unverified assumption.
invented entities (2)
  • Hallucination tax (coined construct)
    purpose: Names the observed degradation in refusal behavior after RFT, serving as the paper's central object of study.
    A descriptive label for the measured phenomenon, not a mechanism with independent falsifiable predictions beyond the measurements used to define it.
  • Synthetic Unanswerable Math (SUM) dataset independent evidence
    purpose: Provides training and evaluation data of implicitly unanswerable math problems for refusal and hallucination research.
    The dataset is publicly released under the name lime-nlp/Synthetic_Unanswerable_Math, so others can audit it, but its quality still depends on the generative and human-review pipeline.

how reviews work

0 comments
Cite this review

Pith. "Pith review of The Hallucination Tax of Reinforcement Finetuning." pith.science (2026). https://pith.science/paper/CUMTZLPD

@misc{pith2026250513988,
  author       = {Pith},
  title        = {Pith review of: The Hallucination Tax of Reinforcement Finetuning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/CUMTZLPD}},
  note         = {Machine review of arXiv:2505.13988}
}
read the original abstract

Reinforcement finetuning (RFT) has become a standard approach for enhancing the reasoning capabilities of large language models (LLMs). However, its impact on model trustworthiness remains underexplored. In this work, we identify and systematically study a critical side effect of RFT, which we term the hallucination tax: a degradation in refusal behavior causing models to produce hallucinated answers to unanswerable questions confidently. To investigate this, we introduce SUM (Synthetic Unanswerable Math), a high-quality dataset of unanswerable math problems designed to probe models' ability to recognize an unanswerable question by reasoning from the insufficient or ambiguous information. Our results show that standard RFT training could reduce model refusal rates by more than 80%, which significantly increases model's tendency to hallucinate. We further demonstrate that incorporating just 10% SUM during RFT substantially restores appropriate refusal behavior, with minimal accuracy trade-offs on solvable tasks. Crucially, this approach enables LLMs to leverage inference-time compute to reason about their own uncertainty and knowledge boundaries, improving generalization not only to out-of-domain math problems but also to factual question answering tasks.

Figures

Figures reproduced from arXiv: 2505.13988 by the authors.

Figure 1
Figure 1. The figure illustrates the hallucination tax of standard reinforcement finetuning (RFT) and the effec￾tiveness of incorporating Synthetic Unanswerable Math (SUM) data. Orange colored text indicates the deleted key information. On the left, under standard RFT, the model attempts to solve an unanswerable math prob￾lem (key information deleted), hallucinating an answer by making an unsupported assumption (marked as red… view at source ↗
Figure 2
Figure 2. Refusal rate (higher is better) before and after RFT on three unanswerable datasets. The bar with [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. Learning dynamics of four LLMs during Reinforcement Finetuning (RFT) with varying mixing ratios [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗

Discussion (0). Sign in to comment.

Forward citations

Cited by 3 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Mechanistic Attention Guidance for Agent Memory Refinement

    cs.AI 2026-07 conditional novelty 7.0 of 10

    Attention patterns reveal how an AI agent uses memory, and using these patterns to rewrite memory improves task performance and memory efficiency.

  2. Beyond Passive Critical Thinking: Fostering Proactive Questioning to Enhance Human-AI Collaboration

    cs.CL 2025-07 conditional novelty 6.0 of 10

    A training method using reinforcement learning and answerability heuristics lets small language models actively ask for missing math details and then solve problems, raising accuracy on the new GSM-MC benchmark from 0...

  3. A Comprehensive Survey on Trustworthiness in Reasoning with Large Language Models

    cs.CL 2025-09 conditional novelty 4.0 of 10

    A structured literature survey concluding that reasoning capabilities do not automatically make LLMs more trustworthy and can introduce new vulnerabilities in safety, robustness, and privacy.

Reference graph

Works this paper leans on

52 extracted references · 11 canonical work pages · cited by 3 Pith papers

  1. [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. [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. [3]

    Marah Abdin, Sahaj Agarwal, Ahmed Awadallah, Vidhisha Balachandran, Harkirat Behl, Lingjiao Chen, Gustavo de Rosa, Suriya Gunasekar, Mojan Javaheripi, Neel Joshi, Piero Kauffmann, Yash Lara, Caio César Teodoro Mendes, Arindam Mitra, Besmira Nushi, Dimitris Papailiopoulos, Olli Saarikivi, Shital Shah, Vaishnavi Shrivastava, and 4 others. 2025. https://arxi...

  4. [4]

    Yejin Bang, Ziwei Ji, Alan Schelten, Anthony Hartshorn, Tara Fowler, Cheng Zhang, Nicola Cancedda, and Pascale Fung. 2025. https://arxiv.org/abs/2504.17550 Hallulens: Llm hallucination benchmark . Preprint, arXiv:2504.17550

  5. [5]

    Forrest Bao, Miaoran Li, Rogger Luo, and Ofer Mendelevitch. 2024. https://doi.org/10.57967/hf/3240 HHEM-2.1-Open

  6. [6]

    Assaf Ben-Kish, Moran Yanuka, Morris Alper, Raja Giryes, and Hadar Averbuch-Elor. 2023. Mitigating open-vocabulary caption hallucinations. arXiv preprint arXiv:2312.03631

  7. [7]

    Qinyuan Cheng, Tianxiang Sun, Wenwei Zhang, Siyin Wang, Xiangyang Liu, Mozhi Zhang, Junliang He, Mianqiu Huang, Zhangyue Yin, Kai Chen, and Xipeng Qiu. 2023. https://arxiv.org/abs/2310.03368 Evaluating hallucinations in chinese large language models . Preprint, arXiv:2310.03368

  8. [8]

    Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, Christopher Hesse, and John Schulman. 2021. https://arxiv.org/abs/2110.14168 Training verifiers to solve math word problems . Preprint, arXiv:2110.14168

Show all 52 references
  1. [9]

    Bofei Gao, Feifan Song, Zhe Yang, Zefan Cai, Yibo Miao, Qingxiu Dong, Lei Li, Chenghao Ma, Liang Chen, Runxin Xu, Zhengyang Tang, Benyou Wang, Daoguang Zan, Shanghaoran Quan, Ge Zhang, Lei Sha, Yichang Zhang, Xuancheng Ren, Tianyu Liu, and Baobao Chang. 2024. https://arxiv.org...

  2. [10]

    Zorik Gekhman, Gal Yona, Roee Aharoni, Matan Eyal, Amir Feder, Roi Reichart, and Jonathan Herzig. 2024. Does fine-tuning llms on new knowledge encourage hallucinations? arXiv preprint arXiv:2405.05904

  3. [11]

    Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, Amy Yang, Angela Fan, Anirudh Goyal, Anthony Hartshorn, Aobo Yang, Archi Mitra, Archie Sravankumar, Artem Korenev, Art...

  4. [12]

    Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, and 1 others. 2025. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948

  5. [13]

    Chaoqun He, Renjie Luo, Yuzhuo Bai, Shengding Hu, Zhen Leng Thai, Junhao Shen, Jinyi Hu, Xu Han, Yujie Huang, Yuxiang Zhang, Jie Liu, Lei Qi, Zhiyuan Liu, and Maosong Sun. 2024. https://arxiv.org/abs/2402.14008 Olympiadbench: A challenging benchmark for promoting agi with olym...

  6. [14]

    Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. 2021. Measuring mathematical problem solving with the math dataset. NeurIPS

  7. [15]

    Jian Hu. 2025. Reinforce++: A simple and efficient approach for aligning large language models. arXiv preprint arXiv:2501.03262

  8. [16]

    Jingcheng Hu, Yinmin Zhang, Qi Han, Daxin Jiang, Xiangyu Zhang, and Heung-Yeung Shum. 2025. https://arxiv.org/abs/2503.24290 Open-reasoner-zero: An open source approach to scaling up reinforcement learning on the base model . Preprint, arXiv:2503.24290

  9. [17]

    Qidong Huang, Xiaoyi Dong, Pan Zhang, Bin Wang, Conghui He, Jiaqi Wang, Dahua Lin, Weiming Zhang, and Nenghai Yu. 2024 a . Opera: Alleviating hallucination in multi-modal large language models via over-trust penalty and retrospection-allocation. In Proceedings of the IEEE/CVF ...

  10. [18]

    Zhen Huang, Haoyang Zou, Xuefeng Li, Yixiu Liu, Yuxiang Zheng, Ethan Chern, Shijie Xia, Yiwei Qin, Weizhe Yuan, and Pengfei Liu. 2024 b . O1 replication journey--part 2: Surpassing o1-preview through simple distillation, big progress or bitter lesson? arXiv preprint arXiv:2411.16489

  11. [19]

    Aitor Lewkowycz, Anders Andreassen, David Dohan, Ethan Dyer, Henryk Michalewski, Vinay Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman-Solo, and 1 others. 2022. Solving quantitative reasoning problems with language models. Advances in Neural Information Processin...

  12. [21]

    Junyi Li, Jie Chen, Ruiyang Ren, Xiaoxue Cheng, Wayne Xin Zhao, Jian-Yun Nie, and Ji-Rong Wen. 2024 b . The dawn after the dark: An empirical study on factuality hallucination in large language models. arXiv preprint arXiv:2401.03205

  13. [22]

    Shawn Li, Jiashu Qu, Yuxiao Zhou, Yuehan Qin, Tiankai Yang, and Yue Zhao. 2025 a . https://arxiv.org/abs/2503.06169 Treble counterfactual vlms: A causal approach to hallucination . Preprint, arXiv:2503.06169

  14. [23]

    Xuefeng Li, Haoyang Zou, and Pengfei Liu. 2025 b . Limr: Less is more for rl scaling. arXiv preprint arXiv:2502.11886

  15. [24]

    Hunter Lightman, Vineet Kosaraju, Yura Burda, Harri Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. 2023. Let's verify step by step. arXiv preprint arXiv:2305.20050

  16. [25]

    Stephanie Lin, Jacob Hilton, and Owain Evans. 2022. https://doi.org/10.18653/v1/2022.acl-long.229 T ruthful QA : Measuring how models mimic human falsehoods . In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pa...

  17. [26]

    Tang, Manan Roongta, Colin Cai, Jeffrey Luo, Li Erran Li, Raluca Ada Popa, and Ion Stoica

    Michael Luo, Sijun Tan, Justin Wong, Xiaoxiang Shi, William Y. Tang, Manan Roongta, Colin Cai, Jeffrey Luo, Li Erran Li, Raluca Ada Popa, and Ion Stoica. 2025. Deepscaler: Surpassing o1-preview with a 1.5b model by scaling rl. https://github.com/PraMamba/DeepScaleR. Notion Blog

  18. [27]

    Alex Mallen, Akari Asai, Victor Zhong, Rajarshi Das, Hannaneh Hajishirzi, and Daniel Khashabi. 2022. When not to trust language models: Investigating effectiveness and limitations of parametric and non-parametric memories. arXiv preprint

  19. [28]

    OpenAI. 2024. https://cdn.openai.com/o1-system-card-20241205.pdf Openai o1 system card . Accessed: 2025-05-02

  20. [29]

    OpenAI. 2025. https://cdn.openai.com/pdf/2221c875-02dc-4789-800b-e7758f3722c1/o3-and-o4-mini-system-card.pdf Openai o3 and o4-mini system card . Accessed: 2025-05-02

  21. [30]

    Ethan Perez, Sam Ringer, Kamile Lukosiute, Karina Nguyen, Edwin Chen, Scott Heiner, Craig Pettit, Catherine Olsson, Sandipan Kundu, Saurav Kadavath, and 1 others. 2023. Discovering language model behaviors with model-written evaluations. In Findings of the Association for Comp...

  22. [31]

    Qwen Team . 2025. QwQ-32B: Embracing the Power of Reinforcement Learning . https://qwenlm.github.io/blog/qwq-32b/. Accessed: 2025-05-02

  23. [32]

    John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. 2017. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347

  24. [33]

    Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, YK Li, Y Wu, and 1 others. 2024. Deepseekmath: Pushing the limits of mathematical reasoning in open language models. arXiv preprint arXiv:2402.03300

  25. [34]

    Guangming Sheng, Chi Zhang, Zilingfeng Ye, Xibin Wu, Wang Zhang, Ru Zhang, Yanghua Peng, Haibin Lin, and Chuan Wu. 2025. https://doi.org/10.1145/3689031.3696075 Hybridflow: A flexible and efficient rlhf framework . In Proceedings of the Twentieth European Conference on Compute...

  26. [35]

    Taiwei Shi, Yiyang Wu, Linxin Song, Tianyi Zhou, and Jieyu Zhao. 2025. Efficient reinforcement finetuning via adaptive curriculum learning. arXiv preprint arXiv:2504.05520

  27. [36]

    Karan Singhal, Tao Tu, Juraj Gottweis, Rory Sayres, Ellery Wulczyn, Mohamed Amin, Le Hou, Kevin Clark, Stephen R Pfohl, Heather Cole-Lewis, and 1 others. 2025. Toward expert-level medical question answering with large language models. Nature Medicine, pages 1--8

  28. [37]

    Yuhong Sun, Zhangyue Yin, Qipeng Guo, Jiawen Wu, Xipeng Qiu, and Hui Zhao. 2024. Benchmarking hallucination in large language models based on unanswerable math word problem. In LREC/COLING

  29. [38]

    Zhiqing Sun, Sheng Shen, Shengcao Cao, Haotian Liu, Chunyuan Li, Yikang Shen, Chuang Gan, Liang-Yan Gui, Yu-Xiong Wang, Yiming Yang, and 1 others. 2023. Aligning large multimodal models with factually augmented rlhf. arXiv preprint arXiv:2309.14525

  30. [39]

    RUCAIBox STILL Team. 2025. https://github.com/RUCAIBox/Slow_Thinking_with_LLMs Still-3-1.5b-preview: Enhancing slow thinking abilities of small models through reinforcement learning

  31. [40]

    M Towhidul Islam Tonmoy, S M Mehedi Zaman, Vinija Jain, Anku Rani, Vipula Rawte, Aman Chadha, and Amitava Das

    S. M Towhidul Islam Tonmoy, S M Mehedi Zaman, Vinija Jain, Anku Rani, Vipula Rawte, Aman Chadha, and Amitava Das. 2024. https://arxiv.org/abs/2401.01313 A comprehensive survey of hallucination mitigation techniques in large language models . Preprint, arXiv:2401.01313

  32. [41]

    Junyang Wang, Yuhang Wang, Guohai Xu, Jing Zhang, Yukai Gu, Haitao Jia, Jiaqi Wang, Haiyang Xu, Ming Yan, Ji Zhang, and 1 others. 2023. Amber: An llm-free multi-dimensional benchmark for mllms hallucination evaluation. arXiv preprint arXiv:2311.07397

  33. [42]

    O mer Faruk Akg \

    Shangshang Wang, Julian Asilis, \"O mer Faruk Akg \"u l, Enes Burak Bilgin, Ollie Liu, and Willie Neiswanger. 2025 a . Tina: Tiny reasoning models via lora. arXiv preprint arXiv:2504.15777

  34. [43]

    Yiping Wang, Qing Yang, Zhiyuan Zeng, Liliang Ren, Lucas Liu, Baolin Peng, Hao Cheng, Xuehai He, Kuan Wang, Jianfeng Gao, and 1 others. 2025 b . Reinforcement learning for reasoning in large language models with one training example. arXiv preprint arXiv:2504.20571

  35. [44]

    Jerry Wei, Da Huang, Yifeng Lu, Denny Zhou, and Quoc V Le. 2023. Simple synthetic data reduces sycophancy in large language models. arXiv preprint arXiv:2308.03958

  36. [45]

    Xiaomi LLM-Core Team . 2025. https://github.com/XiaomiMiMo/MiMo Mimo: Unlocking the reasoning potential of language model – from pretraining to posttraining

  37. [46]

    Wei Xiong, Jiarui Yao, Yuhui Xu, Bo Pang, Lei Wang, Doyen Sahoo, Junnan Li, Nan Jiang, Tong Zhang, Caiming Xiong, and Hanze Dong. 2025. https://arxiv.org/abs/2504.11343 A minimalist approach to llm reasoning: from rejection sampling to reinforce . Preprint, arXiv:2504.11343

  38. [47]

    Yuqing Yang, Ethan Chern, Xipeng Qiu, Graham Neubig, and Pengfei Liu. 2024. Alignment for honesty. Advances in Neural Information Processing Systems, 37:63565--63598

  39. [48]

    Zhangyue Yin, Qiushi Sun, Qipeng Guo, Jiawen Wu, Xipeng Qiu, and Xuanjing Huang. 2023. Do large language models know what they don't know? arXiv preprint arXiv:2305.18153

  40. [49]

    Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Tiantian Fan, Gaohong Liu, Lingjun Liu, Xin Liu, and 1 others. 2025. Dapo: An open-source llm reinforcement learning system at scale. arXiv preprint arXiv:2503.14476

  41. [50]

    Tianyu Yu, Yuan Yao, Haoye Zhang, Taiwen He, Yifeng Han, Ganqu Cui, Jinyi Hu, Zhiyuan Liu, Hai-Tao Zheng, Maosong Sun, and 1 others. 2024. Rlhf-v: Towards trustworthy mllms via behavior alignment from fine-grained correctional human feedback. In Proceedings of the IEEE/CVF Con...

  42. [51]

    Muru Zhang, Ofir Press, William Merrill, Alisa Liu, and Noah A Smith. 2023. How language model hallucinations can snowball. arXiv preprint arXiv:2305.13534

  43. [52]

    Shaokun Zhang, Yi Dong, Jieyu Zhang, Jan Kautz, Bryan Catanzaro, Andrew Tao, Qingyun Wu, Zhiding Yu, and Guilin Liu. 2025. https://arxiv.org/abs/2505.00024 Nemotron-research-tool-n1: Tool-using language models with reinforced reasoning . arXiv preprint arXiv:2505.00024

  44. [53]

    Andrew Zhao, Yiran Wu, Yang Yue, Tong Wu, Quentin Xu, Yang Yue, Matthieu Lin, Shenzhi Wang, Qingyun Wu, Zilong Zheng, and Gao Huang. 2025. https://arxiv.org/abs/2505.03335 Absolute zero: Reinforced self-play reasoning with zero data . Preprint, arXiv:2505.03335

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.