Table of Contents
Fetching ...

TinyV: Reducing False Negatives in Verification Improves RL for LLM Reasoning

Zhangchen Xu, Yuetai Li, Fengqing Jiang, Bhaskar Ramasubramanian, Luyao Niu, Bill Yuchen Lin, Radha Poovendran

TL;DR

This work exposes a pervasive problem: false negatives in rule-based verifiers used for RL fine-tuning of LLMs on mathematical reasoning tasks, which degrade reward quality and slow convergence. It introduces TinyV, a lightweight LLM-based verifier that augments existing verifiers to recover true positives and yield more informative gradients, and it validates its effectiveness on math reasoning benchmarks, including a newly proposed HardVerify-Math benchmark. The authors provide both empirical and theoretical analyses showing that FN-induced reward noise hampers learnability and convergence, and demonstrate that TinyV improves pass rates by up to 10% and accelerates training, with only modest computational overhead. This work offers a practical path to more robust RL-based fine-tuning of LLMs in domains requiring complex verification, by strengthening reward signals with targeted verifier augmentation and richer evaluation benchmarks.

Abstract

Reinforcement Learning (RL) has become a powerful tool for enhancing the reasoning abilities of large language models (LLMs) by optimizing their policies with reward signals. Yet, RL's success relies on the reliability of rewards, which are provided by verifiers. In this paper, we expose and analyze a widespread problem--false negatives--where verifiers wrongly reject correct model outputs. Our in-depth study of the Big-Math-RL-Verified dataset reveals that over 38% of model-generated responses suffer from false negatives, where the verifier fails to recognize correct answers. We show, both empirically and theoretically, that these false negatives severely impair RL training by depriving the model of informative gradient signals and slowing convergence. To mitigate this, we propose tinyV, a lightweight LLM-based verifier that augments existing rule-based methods, which dynamically identifies potential false negatives and recovers valid responses to produce more accurate reward estimates. Across multiple math-reasoning benchmarks, integrating TinyV boosts pass rates by up to 10% and accelerates convergence relative to the baseline. Our findings highlight the critical importance of addressing verifier false negatives and offer a practical approach to improve RL-based fine-tuning of LLMs. Our code is available at https://github.com/uw-nsl/TinyV.

TinyV: Reducing False Negatives in Verification Improves RL for LLM Reasoning

TL;DR

This work exposes a pervasive problem: false negatives in rule-based verifiers used for RL fine-tuning of LLMs on mathematical reasoning tasks, which degrade reward quality and slow convergence. It introduces TinyV, a lightweight LLM-based verifier that augments existing verifiers to recover true positives and yield more informative gradients, and it validates its effectiveness on math reasoning benchmarks, including a newly proposed HardVerify-Math benchmark. The authors provide both empirical and theoretical analyses showing that FN-induced reward noise hampers learnability and convergence, and demonstrate that TinyV improves pass rates by up to 10% and accelerates training, with only modest computational overhead. This work offers a practical path to more robust RL-based fine-tuning of LLMs in domains requiring complex verification, by strengthening reward signals with targeted verifier augmentation and richer evaluation benchmarks.

Abstract

Reinforcement Learning (RL) has become a powerful tool for enhancing the reasoning abilities of large language models (LLMs) by optimizing their policies with reward signals. Yet, RL's success relies on the reliability of rewards, which are provided by verifiers. In this paper, we expose and analyze a widespread problem--false negatives--where verifiers wrongly reject correct model outputs. Our in-depth study of the Big-Math-RL-Verified dataset reveals that over 38% of model-generated responses suffer from false negatives, where the verifier fails to recognize correct answers. We show, both empirically and theoretically, that these false negatives severely impair RL training by depriving the model of informative gradient signals and slowing convergence. To mitigate this, we propose tinyV, a lightweight LLM-based verifier that augments existing rule-based methods, which dynamically identifies potential false negatives and recovers valid responses to produce more accurate reward estimates. Across multiple math-reasoning benchmarks, integrating TinyV boosts pass rates by up to 10% and accelerates convergence relative to the baseline. Our findings highlight the critical importance of addressing verifier false negatives and offer a practical approach to improve RL-based fine-tuning of LLMs. Our code is available at https://github.com/uw-nsl/TinyV.

Paper Structure

This paper contains 38 sections, 6 theorems, 49 equations, 18 figures, 3 tables.

Key Result

Lemma 1

$P_k^{\text{GT}} > P_k^{\text{FN}}$ for all $k$.

Figures (18)

  • Figure 1: This figure illustrates a false negative case in the CN_K12 dataset, where the ground truth and the response generated by LLM (DeepSeek-R1-Distill-Qwen-7B) are mathematically equivalent, yet Prime Verifier and Math Verify incorrectly marks the response as wrong.
  • Figure 2: This figure demonstrates false negatives in Big-Math-RL-Verified by source (upper) and category (lower).
  • Figure 3: The fraction of unique prompts in the training dataset that encounter at least one false-negative rollout across steps. The x-axis represents the training step, and the y-axis shows the cumulative fraction of prompts affected by false negatives.
  • Figure 4: This figure demonstrates the impact of FNs on training efficiency by comparing Prime Verifier and LLM annotations. LLM annotations consistently achieve higher prompt efficiency by reducing the all-wrong ratio, particularly in the early stages of training.
  • Figure 5: This figure demonstrates the curation and deployment of TinyV.
  • ...and 13 more figures

Theorems & Definitions (11)

  • Lemma 1
  • Theorem 1
  • Lemma 2: GRPO Policy Dynamics mroueh2025reinforcementlearningverifiablerewards
  • proof
  • Lemma 3: Reverse KL for GRPO Updates
  • proof
  • Lemma 4: Integral Form of the Step-Wise Learnability Gap
  • proof
  • Lemma 5: Positivity of the Partial Derivatives
  • proof
  • ...and 1 more