Paper: 2603.23184 Authors: Hao Wang, Haocheng Yang, Licheng Pan, Lei Shen, Xiaoxi Li, Yinuo Wang, Zhichao Chen, Yuan Lu, Haoxuan Li, Zhouchen Lin Categories: cs.CL

Abstract

Reward modeling is a long-standing challenge in RLHF for aligning language models. Current methods rely heavily on expensive explicit preference data (human annotators choosing between responses). ImplicitRM studies implicit reward modeling — learning from implicit human feedback such as clicks and copies — as a cost-effective alternative. Two fundamental challenges are identified: (1) implicit data lacks definitive negative samples (no-feedback ≠ negative), and (2) user preference bias where different responses have different propensities to elicit feedback. ImplicitRM addresses both by stratifying training samples into four latent groups via likelihood maximization, with provably unbiased learning objectives.

Key Contributions

  • Formal problem definition: First principled formulation of implicit reward modeling for RLHF
  • Four-group stratification: Decomposes samples into positive-active, negative-active, positive-passive, negative-passive
  • Provably unbiased objective: The learning objective is theoretically shown to be an unbiased estimator of the ideal explicit-preference objective
  • Model-agnostic: Works across diverse LLMs without requiring explicit preference labels

The Implicit Feedback Problem

Why Explicit Preferences Are Expensive

Standard RLHF requires annotators to compare two responses and choose which is better. This is:

  • Labor-intensive and costly
  • Hard to scale
  • A bottleneck for widespread deployment

Why Implicit Feedback Is Tricky

Implicit signals (clicks, copies, dialogue continuation) are naturally abundant but present two unique challenges:

Challenge 1: No Definitive Negatives

User ActionTrue PreferenceObserved Signal
Copies responsePositive ✓Feedback (r=1)
Doesn’t copy, dissatisfiedNegative ✗No feedback (r=0)
Doesn’t copy, but satisfiedPositive ✓No feedback (r=0)

No-feedback includes both genuinely negative AND satisfied-but-passive users. Standard positive-negative classification methods fail.

Challenge 2: User Preference Bias

Users readily copy good answers in knowledge QA tasks but rarely copy responses in open dialogue regardless of satisfaction. This means the probability of getting feedback varies by response type, not just quality.

The Four-Group Stratification

ImplicitRM models users as falling into four latent groups:

  1. Positive-Active: Satisfied user who gives feedback (e.g., copies a good answer)
  2. Negative-Active: Dissatisfied user who gives feedback (rare but possible — e.g., copying to show someone what’s wrong)
  3. Positive-Passive: Satisfied user who doesn’t give feedback (reads useful response but doesn’t copy)
  4. Negative-Passive: Dissatisfied user who doesn’t give feedback (wants to end interaction)

A stratification model estimates each sample’s probability of belonging to each group. The learning objective is then derived via likelihood maximization over these four groups.

Theoretical Guarantee

The proposed objective is proven to be an unbiased estimator of the ideal objective computed on definitive positive and negative samples. This means:

  • Even though we never observe true negative labels, the learned reward model converges to the same solution as if we had them
  • User preference bias is automatically accounted for in the stratification

Results

Experiments demonstrate that ImplicitRM:

  • Learns accurate reward models from implicit preferences alone
  • Improves performance across diverse LLMs and benchmark datasets
  • Matches or approaches the quality of explicit-preference reward models at a fraction of the data collection cost

Takeaways

  • Implicit feedback (clicks, copies, session length) is vastly more abundant than explicit preferences — making it the natural path to scalable RLHF
  • The key insight is that “no feedback” is ambiguous and must be decomposed, not naively treated as negative
  • Four-group stratification elegantly handles both the missing-negatives problem and user preference bias
  • This enables reward modeling at production scale using signals that are already being collected

论文: 2603.23184 作者: Hao Wang, Haocheng Yang, Licheng Pan, Lei Shen, Xiaoxi Li, Yinuo Wang, Zhichao Chen, Yuan Lu, Haoxuan Li, Zhouchen Lin 分类: cs.CL

摘要

奖励建模是RLHF中对齐语言模型的长期挑战。当前方法严重依赖昂贵的显式偏好数据(人类标注者在响应之间选择)。ImplicitRM研究隐式奖励建模——从点击和复制等隐式人类反馈中学习——作为经济高效的替代方案。识别了两个根本性挑战:(1)隐式数据缺乏明确的负样本(无反馈≠负面),(2)用户偏好偏差,不同响应引发反馈的倾向不同。ImplicitRM通过似然最大化将训练样本分层为四个潜在组来解决这两个问题,具有可证明的无偏学习目标。

主要贡献

  • 正式问题定义:首个RLHF隐式奖励建模的原则性表述
  • 四组分层:将样本分解为正面-主动、负面-主动、正面-被动、负面-被动
  • 可证明无偏目标:学习目标在理论上被证明是理想显式偏好目标的无偏估计量
  • 模型无关:无需显式偏好标签即可跨多种LLM工作

隐式反馈问题

为什么显式偏好数据昂贵

标准RLHF要求标注者比较两个响应并选择更好的。这是劳动密集型的、昂贵的,且难以扩展。

为什么隐式反馈棘手

挑战1:没有明确的负样本

无反馈包含真正不满意的用户和满意但被动的用户。标准正负分类方法失效。

挑战2:用户偏好偏差

用户在知识问答任务中容易复制好答案,但在开放对话中无论满意与否都很少复制。这意味着获得反馈的概率因响应类型而异,而不仅仅是质量。

四组分层

ImplicitRM将用户建模为属于四个潜在组:

  1. 正面-主动:满意并给予反馈的用户
  2. 负面-主动:不满意但给予反馈的用户
  3. 正面-被动:满意但不给予反馈的用户
  4. 负面-被动:不满意且不给予反馈的用户

分层模型估计每个样本属于每组的概率。然后通过这四组的似然最大化推导学习目标。

理论保证

所提出的目标被证明是在明确正负样本上计算的理想目标的无偏估计量。这意味着即使从未观察到真正的负标签,学习的奖励模型也收敛到相同的解。

实验结果

实验表明ImplicitRM:

  • 仅从隐式偏好中学习准确的奖励模型
  • 跨多种LLM和基准数据集一致提升性能
  • 以数据收集成本的一小部分匹配或接近显式偏好奖励模型的质量

要点总结

  • 隐式反馈比显式偏好丰富得多——使其成为可扩展RLHF的自然途径
  • 关键洞察:“无反馈”是歧义的,必须分解而非简单视为负面
  • 四组分层优雅地处理了缺失负样本问题和用户偏好偏差
  • 这使得使用已在收集的信号进行生产规模的奖励建模成为可能