Skip to main content

RationalRewards: Reasoning Rewards Scale Visual Generation Both Training and Test Time

AuthorsHaozhe Wang et al.
Year2026
HF Upvotes100
arXiv2604.11626
PDFDownload
HF PageView on Hugging Face

Abstract

Most reward models for visual generation reduce rich human judgments to a single unexplained score, discarding the reasoning that underlies preference. We show that teaching reward models to produce explicit, multi-dimensional critiques before scoring transforms them from passive evaluators into active optimization tools, improving generators in two complementary ways: at training time, structured rationales provide interpretable, fine-grained rewards for reinforcement learning; at test time, a Generate-Critique-Refine loop turns critiques into targeted prompt revisions that improve outputs without any parameter updates. To train such a reward model without costly rationale annotations, we introduce Preference-Anchored Rationalization (PARROT), a principled framework that recovers high-quality rationales from readily available preference data through anchored generation, consistency filtering, and distillation. The resulting model, RationalRewards (8B), achieves state-of-the-art preference prediction among open-source reward models, competitive with Gemini-2.5-Pro, while using 10-20x less training data than comparable baselines. As an RL reward, it consistently improves text-to-image and image-editing generators beyond scalar alternatives. Most strikingly, its test-time critique-and-refine loop matches or exceeds RL-based fine-tuning on several benchmarks, suggesting that structured reasoning can unlock latent capabilities in existing generators that suboptimal prompts fail to elicit.


Engineering Breakdown

Plain English

This paper tackles a fundamental limitation in visual generation reward models: they currently collapse rich human judgment into a single opaque score, losing the reasoning behind preferences. The authors propose teaching reward models to generate explicit, multi-dimensional critiques before scoring, which improves generator quality in two ways—by providing interpretable fine-grained rewards for reinforcement learning at training time, and by enabling a Generate-Critique-Refine loop at test time that iteratively improves outputs through targeted prompt revisions without updating model parameters. To avoid expensive annotation of rationales, they introduce PARROT (Preference-Anchored Rationalization), a framework that recovers high-quality critiques from preference pairs alone. This transforms reward models from passive evaluators into active optimization tools that both guide training and enable post-hoc refinement.

Core Technical Contribution

The core innovation is combining explicit rationalization (having the reward model explain its judgments) with a two-stage improvement pipeline that operates at both training and inference time. PARROT is the key technical contribution—a principled method to train reward models to produce meaningful critiques without expensive manual rationale annotations, instead leveraging only preference labels that are already common in RLHF pipelines. The paper demonstrates that multi-dimensional structured critiques are fundamentally more useful than scalar rewards for both RL training (where fine-grained feedback guides gradient directions) and inference-time refinement (where critiques directly inform prompt iteration). This approach fundamentally shifts the role of reward models from providing a single number to providing actionable, interpretable feedback that can be consumed by both learning algorithms and human-in-the-loop systems.

How It Works

The system operates in three connected stages. First, a reward model is trained via PARROT: given pairs of images where one is preferred over the other, the model learns to generate critiques along multiple dimensions (e.g., composition, color, subject relevance) that explain the preference without explicit rationale supervision. The training objective anchors these critiques to the preference signal, recovering explanatory content from the preference label alone. At training time, these structured critiques feed into RL algorithms (like PPO or DPO), where each dimension provides a separate reward signal, enabling more granular gradient flow than a single scalar. At test time, the Generate-Critique-Refine loop works as follows: (1) generate an image from a prompt, (2) run it through the critique module to identify specific failures, (3) revise the prompt based on critique content, (4) regenerate and repeat. This loop requires no fine-tuning of the generator—critiques directly steer prompt engineering and guide human editors toward high-impact revisions.

Production Impact

For teams building visual generation systems, this approach solves the critical problem of reward model interpretability and actionability. Current systems often struggle to understand why a reward model prefers one output over another, making it hard to debug failures or guide model improvement. By adding critique generation, engineers gain visibility into failure modes and can design targeted interventions. In production pipelines, this enables three concrete improvements: (1) RL training becomes more efficient because reward signals are decomposed into interpretable dimensions rather than conflated in a scalar, reducing sample complexity; (2) inference-time refinement becomes practical without model retraining, letting you improve quality in a post-hoc Generate-Critique-Refine loop that costs only a few forward passes; (3) human-in-the-loop workflows become more efficient because critiques directly highlight which aspects of the image failed and why. The trade-off is additional compute at inference time (extra forward pass for critique generation) and moderate complexity in integrating the critique module into existing pipelines, but the payoff in interpretability and iterative improvement is substantial for quality-critical applications.

Limitations and When Not to Use This

The paper assumes that preference labels (which image is better) contain enough signal to recover meaningful critiques—this may not hold if preferences are noisy, inconsistent, or driven by factors hard to articulate. The approach also requires careful alignment between the critique dimensions and actual user preferences; poorly chosen dimensions may produce critiques that don't correlate with real improvement. At test time, the Generate-Critique-Refine loop assumes that prompt revision is a tractable way to improve output—this may fail for fundamental model limitations or when defects aren't easily describable in text. The method hasn't been tested on all modalities or image types; performance on rare or out-of-distribution content is unclear. Finally, the paper doesn't address computational cost of the critique loop—repeated inference and critique generation could be prohibitive for latency-sensitive applications like real-time generation.

Research Context

This work builds on the broader trend of making reward models more interpretable and actionable, extending ideas from explainable AI and RLHF (which already use reward models to guide learning). It sits at the intersection of reward modeling, interpretability, and iterative refinement—addressing limitations in how RLHF systems like RLHF for text (InstructGPT, Constitutional AI) handle the visual modality. The paper likely improves on benchmarks for visual preference prediction (e.g., TIFA, HPS, PickaPic) by showing that models with explicit rationales maintain or improve scalar preference accuracy while adding interpretability. It opens a research direction toward 'critiquing models' as a first-class component of generative systems, paralleling recent work on process rewards and chain-of-thought explanations in language models. This could inspire follow-up work on critique-guided generation for other modalities, multi-agent critique systems, and tighter integration between critique and model parameter updates.


:::tip Subscribe Get weekly breakdowns of papers like this in AI Letters - the newsletter for engineers building production AI systems. :::


Back to Research Lab → · Subscribe to AI Letters →

© 2026 EngineersOfAI. All rights reserved.