Skip to content
AI.info

Research

From Verifiable Dot to Reward Chain: Harnessing Verifiable Reference-based Rewards for Reinforcement Learning of Open-ended Generation

Overview Research area: Natural language processing — reinforcement learning for aligning large language models (LLMs) on open-ended text generation. Technical level: Intermediate. Readers will get th

arXiv
2601.18533
Published
2026-01-26
Authors
Yuxin Jiang, Yufei Wang, Qiyuan Zhang, Xingshan Zeng, Liangyou Li, Jierun Chen, Chaofan Tao, Haoli Bai, Lifeng Shang

AI summary

Overview

Research area: Natural language processing — reinforcement learning for aligning large language models (LLMs) on open-ended text generation.

Technical level: Intermediate. Readers will get the most from this paper with some familiarity with RLHF, RLVR, GRPO, and reward modeling, though the core idea is explained in accessible terms.

Scope: The paper introduces RLVRR, a framework that replaces the single "verifiable dot" reward used in reasoning tasks with a reference-derived, rule-based "reward chain" spanning content and style, and evaluates it on more than 10 benchmarks with Qwen2.5 and Llama3.1 models.

What This Paper Is About

Reinforcement learning with verifiable rewards (RLVR) works well for math and code because a final answer can be checked as correct or incorrect — a single verifiable "dot." Open-ended generation has no such unambiguous ground truth, so researchers fall back on preference-based or generative reward models, which are expensive, prone to reward hacking, and require large-scale pairwise annotation. The paper's goal is to extend verifiable RL to open-ended tasks by extracting an ordered set of checkable signals from high-quality reference responses, turning dot supervision into a reward chain.

Key Contributions

  1. RLVRR framework. A method that computes rewards from high-quality references rather than the final answer, decomposing the reward into two verifiable dimensions: content (deterministic core concepts such as keywords and key entities) and style (reference-specific properties such as length and markdown formatting checked by LLM-generated Python functions).
  2. Two-level hierarchical keyword extraction. An LLM first identifies essential key points that the assistant must address, then extracts keywords (each fewer than three words) for each key point. Content reward is computed via normalized longest common subsequence (LCS) over matched keyword sequences, averaged across key points, with the maximum score across multiple references (the paper sets I = 3).
  3. Empirical validation across more than 10 benchmarks. Experiments with Qwen2.5 (3B, 7B) and Llama3.1-8B show RLVRR substantially outperforms SFT trained with ten times more data, advanced reward models, and alternative reward strategies, while preserving output diversity.
  4. Integration with RLVR and low cost. RLVRR can be combined with rule-based reasoning rewards in a single training run, and it avoids loading a reward model during RL, incurring only 0.71% computational overhead relative to a random-reward baseline, with $21.36 in API cost for data construction.

Main Findings

  • Beats SFT with 10× more data. On Qwen2.5-3B-Base, RLVRR reaches an open-ended average of 31.1 versus 26.7 for SFT on 10K data and 30.5 for SFT on 100K data. On Qwen2.5-3B-Instruct, RLVRR scores 36.4 versus 33.1 for DPO and 33.7 for RM; on Qwen2.5-7B-Instruct, 46.4 versus 44.0 for DPO and 44.5 for RM.
  • Improves over reward models by a measured margin. RLVRR improves over the RM-based approach — which requires loading an auxiliary reward model — by +2.3 and +2.7 points on Qwen2.5-3B-Base and Instruct, respectively.
  • Generalizes across model families. On Llama3.1-8B, RLVRR reaches a 46.3 open-ended average versus 44.8 for SFT on 100K data, 44.3 for RM, 43.9 for DPO, and 40.9 for the Instruct baseline.
  • Random rewards damage performance. The Random baseline collapses to 11.0 (Qwen2.5-3B-Base) and 12.7 (Llama3.1-8B) on the open-ended average, showing that untargeted reward signals hurt rather than help.
  • Content reward is the dominant component. Removing the content reward drops the average from 31.1 to 18.1 (−13.0 points); replacing LCS with naive direct keyword matching collapses performance to 17.8 because it ignores keyword ordering and incentivizes verbose, reward-hacking outputs.
  • Style reward matters and benefits from LLM-assigned weights. Removing the style reward costs 2.8 points (28.3); removing LLM-generated importance weights in the style reward costs 1.2 points (29.9).
  • Hierarchical and LLM-based keyword extraction both help. Dropping two-level extraction costs 0.9 points (30.2); random keyword selection at 15% yields 27.0 and TF-IDF at 15% yields 27.4, with LLM extraction outperforming both by 3.7–4.1 points. Raising TF-IDF to 30% degrades further to 27.2, suggesting quality matters more than quantity.
  • Multiple references add robustness. Using a single reference instead of multiple only slightly reduces performance, from 31.1 to 30.7.
  • Reasoning and open-ended training can be unified. With Qwen2.5-3B-Base, RLVR training on 10K math samples alone scores 51.9 on math benchmarks but only 22.6 on open-ended tasks. Mixed training with 5k math (RLVR) plus 5k open-ended (RLVRR) reaches 51.9 on math and 30.7 on open-ended, versus 50.4 and 28.2 for the same mixture using RM.
  • Open-ended training transfers positively to math. RLVRR trained only on open-ended data achieves 49.8 on math benchmarks (up from 46.1 for the base model) and 31.1 on open-ended tasks.
  • RLVRR generalizes better than SFT. In a controlled study on 1,000 randomly sampled prompts, SFT shows a higher BLEU advantage on the training set that vanishes or reverses on the development set, indicating memorization. The paper reports semantic similarity values of 0.84 vs. 0.85 on training and 0.78 vs. 0.76 on development against SFT, describing RLVRR as achieving higher semantic similarity.
  • Self-distilled RLVRR beats standard SFT. Training on RLVRR-distilled data yields a 29.2 open-ended average versus 25.0 for SFT-distilled SFT and 26.7 for standard SFT at 10K, a 2.5-point gain over standard SFT.
  • Robust to weaker reference LLMs. Replacing GPT-4o-mini with Llama3-70B-Instruct, RLVRR still scores 28.9 versus 28.3 for SFT at 100K and 24.8 for SFT at 10K.
  • Diversity is preserved. RLVRR reaches best@5 of 33.2 and Self-BLEU of 24.0, comparable to RM (30.8 / 23.9) and the Instruct model (31.0 / 23.7).
  • Cheap and fast. Per-step runtime is 122.42 seconds for RLVRR versus 121.56 for Random, 131.62 for RM, 128.92 for GRM, and 129.38 for RLPR.

Methodology in Plain English

The researchers start from a dataset of 100K open-ended instruction-response pairs whose responses were regenerated by GPT-4o-mini, then use GPT-4o-mini offline to generate verifiable components for each prompt-reference pair.

For each prompt, an LLM first lists the key points the answer must cover, then extracts short keywords for each key point from the reference. These keywords constitute roughly 15% of the reference response. During RL, whenever the policy produces a rollout, the system matches keywords in the rollout and in the reference for each key point and compares their orderings using longest common subsequence, normalizing by the longer sequence and averaging over key points. When several references exist, the highest per-key-point score is taken. This is the content reward.

For style, an LLM writes small Python checking functions that test properties such as answer length and markdown formatting, and assigns each function an importance weight. The rollout is passed through these functions and the weighted results are summed to form the style reward. Content and style rewards are combined by simple averaging.

Training uses GRPO on 10K randomly sampled examples, with data filtered out when both the content and style rewards of the reference itself fall below 0.7. SFT runs for 3 epochs at a learning rate of 2e-5 with batch size 128, max sequence length 2048, and a cosine schedule with 10% warmup; GRPO uses 1 epoch, learning rate 5e-7, 8 rollouts, and 1024-token max prompt and generation lengths; DPO uses 1 epoch at 5e-7 with beta of 1e-2. All experiments run on 8 NVIDIA A800 GPUs and report the average of three random runs.

Evaluation covers AlpacaEval 2 (805 questions, length-controlled win rate), Arena-Hard (500 queries, win rate), MT-Bench (80 questions across 8 categories, rated 1–10 by GPT-4.1-mini), IFEval (541 samples, prompt-level strict accuracy), and FollowBench (820 samples, hard satisfaction rate), plus MMLU, ARC, MATH, and HumanEval for cross-domain generalization.

Why This Matters

Impact on research. The paper proposes a middle path between RLVR and RLHF: rewards stay deterministic and rule-based, but they are derived from references rather than a single ground-truth answer. This removes the need to load a reward model during RL training while avoiding the misalignment of n-gram metrics like BLEU, and it shows that reasoning-style and open-ended alignment can be trained in a single run.

Real-world applications (implied by the framework):

  • Safety-aligned response policies that must simultaneously explain a risk, refuse a harmful request, cite a relevant rule, and offer a safer alternative — the multi-requirement scenario the paper uses as motivation.
  • Instruction-following assistants that must satisfy formatting, length, and structural constraints alongside content requirements.
  • Cost-sensitive post-training pipelines where maintaining a separate reward model is impractical.
  • Domains with plentiful high-quality exemplars but no single correct answer, such as summarization or customer-facing response drafting.

Industry relevance. The 0.71% overhead relative to random rewards and the $21.36 total API cost for data construction make the approach attractive for teams without large annotation budgets. The paper also shows that an open-source Llama3-70B-Instruct can substitute for GPT-4o-mini in both reference and verifiable-component generation, reducing dependence on proprietary commercial models.

Future Directions

  • Reducing dependence on powerful LLMs. How far can the quality of the reference and the verifiable components degrade before RLVRR loses its edge? The paper tests only one weaker substitute (Llama3-70B-Instruct) and reports that performance approaches SFT-at-100K rather than matching the GPT-4o-mini configuration.
  • Scaling to larger models and more diverse domains. Experiments cover Qwen2.5-3B, Qwen2.5-7B, and Llama3.1-8B; the paper does not report results at larger parameter scales or on multilingual data.
  • Extending beyond content and style. Only two reward dimensions are explored. Whether dimensions such as tone, factual grounding, or safety could be added as further verifiable checks remains an open question; the paper notes that semantic aspects such as tone are only implicitly captured through the content reward.
  • Human evaluation and long-term robustness. The evaluations rely on GPT-4.1-mini as judge and on rule-based benchmarks; the paper does not report a human study or an analysis of how resistant the reward chain is to adversarial or distribution-shifted prompts over extended training.

Target Audience

This paper is best suited for researchers and engineers working on LLM post-training and alignment, particularly those applying reinforcement learning with verifiable rewards or looking for cheaper alternatives to reward-model-based RLHF. It also serves practitioners who need to align models on tasks lacking a single correct answer, and students studying how reward design shapes generalization, reward hacking, and output diversity in RL-trained language models.

Authors’ abstract

Reinforcement learning with verifiable rewards (RLVR) succeeds in reasoning tasks (e.g., math and code) by checking the final verifiable answer (i.e., a verifiable dot signal). However, extending this paradigm to open-ended generation is challenging because there is no unambiguous ground truth. Relying on single-dot supervision often leads to inefficiency and reward hacking. To address these issues, we propose reinforcement learning with verifiable reference-based rewards (RLVRR). Instead of checking the final answer, RLVRR extracts an ordered linguistic signal from high-quality references (i.e, reward chain). Specifically, RLVRR decomposes rewards into two dimensions: content, which preserves deterministic core concepts (e.g., keywords), and style, which evaluates adherence to stylistic properties through LLM-based verification. In this way, RLVRR combines the exploratory strength of RL with the efficiency and reliability of supervised fine-tuning (SFT). Extensive experiments on more than 10 benchmarks with Qwen and Llama models confirm the advantages of our approach. RLVRR (1) substantially outperforms SFT trained with ten times more data and advanced reward models, (2) unifies the training of structured reasoning and open-ended generation, and (3) generalizes more effectively while preserving output diversity. These results establish RLVRR as a principled and efficient path toward verifiable reinforcement learning for general-purpose LLM alignment. We release our code and data at https://github.com/YJiangcm/RLVRR.

Read the original paper