AIAny
Icon for item

Read It Back: Pretrained MLLMs Are Zero-Shot Reward Models for Text-to-Image Generation

Uses pretrained multimodal LLMs as zero-shot, training-free reward models for text-to-image RL by scoring how well the original text prompt can be recovered from a generated image via image-conditioned prompt log-likelihood; includes a Self-SpectraReward closed-loop variant.

Introduction

Most text-to-image RL approaches rely on supervised preference data or trained reward models. This paper shows a different lever: reuse a pretrained multimodal LLM's image–text alignment to rate images without any reward-model fine-tuning. The core idea is to measure prompt recoverability — how likely the MLLM would generate the original prompt given the image — and use that average image-conditioned prompt log-likelihood as a reward.

Key Findings
  • SpectraReward is training-free: it uses a single image-conditioned, teacher-forced forward pass through an MLLM to compute reward, so no preference labels or reward fine-tuning are required. This simplifies pipelines and reduces reliance on labeled human preferences.
  • Broad compatibility and empirical gains: evaluated across two diffusion backbones, three RL algorithms, nine reward MLLM backbones (4B–235B) from four families, and five out-of-distribution benchmarks; SpectraReward and Self-SpectraReward consistently improve generation quality and outperform prior MLLM-derived reward methods.
  • Self-SpectraReward insight: letting the policy’s own understanding branch score its generation (a closed-loop setup) can match or beat much larger external reward models, highlighting that reward–policy alignment matters more than absolute reward-model scale.
  • Not monotonic with model size: larger reward MLLMs do not always yield better RL outcomes, implying selection/compatibility of reward model and policy is crucial.
Who it's for and trade-offs

Great fit if you want to tune text-to-image models via RL without collecting preference labels or training extra reward models, or if you want a simple plug-in reward signal that leverages existing multimodal LLMs. Look elsewhere if you require human-aligned, safety-verified preference judgments (human labels remain the gold standard) or if your deployment constraints prevent using large pretrained MLLMs for scoring (compute and latency costs for large MLLMs can be nontrivial).

Where it fits

SpectraReward sits between heuristic automated metrics and fully supervised reward learning: it reuses pretrained multimodal capabilities to provide a principled, likelihood-based reward that scales across image generators and RL algorithms, offering a low-friction alternative for improving fidelity to prompts.

Method overview

Compute the average log-likelihood that the MLLM assigns to the original text prompt conditioned on the generated image (teacher-forced). Use that score as the scalar reward to optimize a diffusion-based image generator via standard RL algorithms. The Self-SpectraReward variant uses a unified multimodal model where the policy’s perception/understanding branch scores outputs from its generation branch, forming a closed feedback loop without external reward models.

Information

  • Websitearxiv.org
  • AuthorsRunhui Huang, Qihui Zhang, Zhe Liu, Yu Gao, Jie Wu, Hengshuang Zhao
  • Published date2026/07/13

More Items

Provides a real-scale 3D Hong Kong sandbox to evaluate whether multimodal LLM agents can turn local street-view perception into sustained spatial action, supporting closed-loop first-person interaction, an interactive map, and controlled tests of grounding, long-range navigation, and robustness.

Measures whether video generators reproduce the correct distribution of possible physical behaviors under repeated rollouts. Introduces PAWBench and PAWEval to convert repeated generations into outcome-level empirical distributions and quantify probabilistic alignment; evaluates 50 scenarios and 11 models and finds no model consistently matches reference probabilities.

Adapts off-policy RL stabilizers to the available data regime: introduces WarpSAC, a regime-aware family using Sample Weight Decay plus two regime-matched variants (WarpSAC-L and WarpSAC-A) to improve sample efficiency, wall-time learning, and sim-to-real deployment.