WorldReward outperforms GPT-5.5 at judging world-model videos

WorldReward outperforms GPT-5.5 at judging world-model videos

Camera-conditioned world models generate video in which a commanded camera action should produce the expected change in the scene while the video itself stays visually coherent. Researchers behind WorldReward argue that existing reward signals only ever check one half of that: geometry-based rewards can tell whether the camera moved as commanded but cannot judge whether the resulting footage looks right, while image-based rewards score frame quality but miss whether the action was actually executed or stayed coherent over time. WorldReward is built to score both at once, using a vision-language model (VLM) as a pairwise preference judge: given two candidate videos, it decides which better matches the commanded action and which has the better visual quality. Judging a full long video against its entire action sequence in one pass tends to bury short, local evidence of an action in a long noisy context, so WorldReward instead splits each pair of videos into action-aligned chunks, turns each chunk into structured visual evidence, and then aggregates the chunk-level judgments by voting into a single video-level verdict on action consistency and a separate one on visual quality. To train this judge, the team built a large preference dataset of structured judgments generated by a frontier VLM, then refined with tool-based agent auditing and targeted human review. They also built WorldReward-Bench, a human-annotated benchmark that measures how closely a reward model's judgments track actual human preferences across three dimensions: action consistency, appearance quality, and motion quality. On this benchmark, WorldReward has the highest agreement with human preferences on all three dimensions, beating GPT-5.5 by 3.42, 1.45, and 3.56 percentage points respectively. The authors also plug WorldReward into reinforcement-learning post-training of a world model called HY-WorldPlay 1.5, where it consistently improves both action execution and visual quality across short- and long-term generation horizons.

Key facts

  • WorldReward is a VLM-based pairwise preference reward model that jointly scores action consistency and visual quality for camera-conditioned world models, instead of using two separate reward signals.
  • It splits paired videos into action-aligned chunks, builds structured visual evidence per chunk, and aggregates chunk-level votes into video-level action and visual-quality preferences.
  • On the new WorldReward-Bench, it beats GPT-5.5 in agreement with human preferences by 3.42 percentage points on action consistency, 1.45 on appearance quality, and 3.56 on motion quality.
  • Used for reinforcement-learning post-training of HY-WorldPlay 1.5, WorldReward consistently improved both action execution and visual quality across short- and long-term horizons.
  • The training data combines structured judgments from a frontier VLM with tool-based agent auditing and targeted human review.

Why it matters

World models that turn a camera command into video are only as good as the reward signal used to train and evaluate them, and the existing options each see half the picture: geometry-based rewards can confirm the camera moved as commanded but cannot tell if the video looks right, while image-based rewards judge frame quality without checking whether the action happened at all. WorldReward proposes a single VLM-based judge that scores both properties together, which matters for anyone trying to improve these models with reinforcement learning, since a reward that misses either half can push training in the wrong direction.

Who it affects

This is aimed at researchers and teams building or fine-tuning camera-conditioned world models, particularly those doing RL post-training where a reliable reward signal is the bottleneck. It also affects anyone building benchmarks for video generation, since WorldReward-Bench gives a concrete, human-annotated way to check whether a reward model actually agrees with human judgment.

How to use it

WorldReward is a research artifact, not a shipped product: a reward model plus a benchmark, WorldReward-Bench, for measuring reward-model agreement with human preferences on action consistency, appearance quality, and motion quality. The authors demonstrate its use by plugging it into RL post-training of a world model called HY-WorldPlay 1.5. No code release, pricing, or licence terms are mentioned in the source.

How solid is it

On WorldReward-Bench, WorldReward achieves the highest agreement with human preferences across all three measured dimensions, exceeding GPT-5.5 by 3.42, 1.45, and 3.56 percentage points on action consistency, appearance quality, and motion quality respectively. Applied to RL post-training of HY-WorldPlay 1.5, it is reported to consistently improve both action execution and visual quality across short- to long-term horizons, which is evidence the reward signal is useful in practice and not just accurate on a held-out benchmark.

Risks and caveats

The source gives only the percentage-point margins over GPT-5.5, not the absolute agreement scores for either model, which makes it hard to judge how close the underlying numbers actually are. No details are given on the scale of the preference dataset or WorldReward-Bench (how many videos or annotators were involved), no other baseline models are compared against, and no author names, institutional affiliations, publication venue, or code or model release are stated in the text.

“We posit that a vision-language model (VLM) offers a shared reasoning space for relating actions to their visual outcomes.”

— the paper's authors