Reward Models — Survey

Categorized landscape · newest first within each category · primary focus: robotics · last updated May 2026

Scope. A categorized catalogue of reward models (RMs) across four families: (1) robotics & embodied AI — the deepest section, (2) process reward models (PRMs) for reasoning, (3) LLM / RLHF reward models, (4) vision / multimodal generation RMs. Within each category entries are ordered newest first.

Recency weighting. 2025–2026 entries get the most coverage; 2023–2024 covered well; 2021–2022 kept as low-density reference baselines. Watch-list rows are papers whose results look strongest but have no public code yet.

Legend. 2026 latest   2025   2024   ≤2023  ·  = author-recommended first pick within the subsection  ·  ⚠ no code = paper / project only.

  1. Robotics & Embodied AI RMs
    1. VLM-as-reward (zero-shot & fine-tuned)
    2. Learned video / preference reward models
    3. Success classifiers & trajectory verifiers
    4. Inverse RL / preference-based RL
    5. World-model / value-function reward
    6. LLM-generated reward code
    7. Foundation-model RLHF for VLAs
    8. Benchmarks & surveys (robotics)
  2. Process Reward Models (PRMs) — reasoning
    1. Math / reasoning PRMs
    2. Generative / verifier-style PRMs
    3. Code & agent PRMs
    4. Multimodal PRMs
    5. PRM benchmarks & surveys
  3. LLM / RLHF Reward Models
    1. Scalar / Bradley–Terry RMs
    2. Generative / LLM-as-judge RMs
    3. Multi-objective / fine-grained RMs
    4. Pairwise & reward-free methods
    5. Constitutional / rule-based / RLAIF
    6. RM benchmarks & surveys
  4. Vision / Multimodal Generation RMs
    1. Text-to-image (T2I) RMs
    2. Text-to-video (T2V) RMs
    3. 3D / motion RMs
    4. MLLM-as-judge for generation
    5. Benchmarks (vision generation)
  5. Cross-cutting trends & reading list

1. Robotics & Embodied AI Reward Models

Reward models for robot learning split along two axes: what they consume (RGB frame, video, language, proprio, action) and what they emit (sparse success, dense scalar, preference, executable code, value function). The subsections below group by mechanism. Category chips used in tables: VLM VLM-as-reward   VID learned video RM   CLS success classifier / verifier   PREF preference-based RL   WM world-model / value   CODE LLM-written reward code   RLHF RLHF on VLA.

1.1 VLM-as-reward — zero-shot or fine-tuned VLMs scoring robot frames/videos. The dominant 2024–2026 pattern: take a pretrained vision-language model, feed it RGB + language goal, read out a scalar or preference. Sub-split between training-free prompting and lightweight fine-tunes.
#ModelYrTeamCode / linkBackboneReward outputInputTraining sourceNotes
1LRM (Large Reward Models)2026Tsinghua + collab.project · arXivQwen3-VL 4B / 8BDense per-frame (process + completion + temporal contrastive)RGB video + language24 sources incl. OXE, HOI, simOnline closed-loop policy refinement; +13 pp real-robot success in 30 RL iters. Strongest open robot RM at time of writing.
2RoboReward 4B / 8B2026OpenReview teamOpenReview · arXivQwen3-VL 4B / 8B5-level end-of-episode progressRGB rollout + task text45 k scored episodes (OXE + RoboArena)First general-purpose open robot RM that beats GPT-5 and Gemini-Robotics-ER on real-robot tasks. Ships RoboReward-Bench.
3MARVL2026arXiv 2602.15872arXivFine-tuned VLMDense stage-projected scalarRGB + languageMeta-World demosMulti-stage subtask decomposition + task-direction projection; matches oracle dense reward.
4TOPReward2026TOPReward teamGitHub · projectQwen3-VL (frozen)Dense scalar via internal token logit probabilitiesRGB video + languageZero-shot, no trainingBypasses text generation — reads progress from VLM logits. 0.947 VOC on 130+ tasks.
5T²-VLM (training-free temporal RM)2025arXiv 2507.04789arXiv · ⚠ no codeFrozen VLM + Bayesian trackerDense scalar (temporally smoothed)RGB + languageTraining-freeBayesian smoothing over VLM scores → monotonic rewards. Pure prompting baseline.
6GVL (Generative Value Learning)2025UPenn / DeepMindproject · arXivGemini-1.5-ProDense % task-progressShuffled video frames + languageZero-shot in-contextReframes value estimation as frame-ordering. Scales to 300+ real-world tasks. ICLR 2025.
7PrefVLM2025Ghosh et al.arXiv · ⚠ no codeVLM + selective human labelPreference labelsRGB pairs + languageMeta-World + sparse human queriesCuts human annotation via VLM filtering + inverse-dynamics adaptation.
8IKER (Iterative Keypoint Reward)2025Patel et al.project · arXivGPT-4o + keypoint samplerPython reward over keypoint geometryRGB-D + languageZero-shotReal→sim→real loop with VLM-generated keypoint rewards. ICRA 2025.
9ELEMENTAL2025Ga TecharXiv · ⚠ no codeLLM + VLMReward function (mixed code + feature)Demos + languageFew demos + iterative VLMVisual demos + NL guidance overcome LLM-only feature balancing.
10RL-VLM-F2024Wang, Sun et al.arXivGemini / GPT-4VPreference → learned scalarImage pairs + text goalZero-shot VLM prefsPairwise VLM prefs across rigid / articulated / deformable manipulation. ICML 2024.
11FuRL2024Fu et al.GitHub · arXivLIV / VLMDense reward (fine-tuned)RGB + textMeta-WorldFixes VLM-reward misalignment via reward-alignment fine-tune + relay RL. ICML 2024.
Reference baselines — older, kept as historical anchors
R1VLM-RM (zero-shot)2023DeepMindarXivCLIP / FlamingoSparse scalarRGB + languageZero-shotReference baseline — VLMs as direct RL reward without any training.
R2LIV2023UPenn / FAIRarXivCLIP + VIPGoal-conditioned valueRGB + languageEpicKitchens + robotMultimodal value-implicit pretraining; widely cited dense-reward baseline. ICML 2023.
R3RoboCLIP2023USCproject · arXivS3D-CLIPCosine-similarity scalarRGB video + language / demoZero-shotOne demo or text → reward. NeurIPS 2023.
R4MineCLIP2022NVIDIA (MineDojo)MineDojoCLIP-ViTDense shaping scalarRGB + textYouTube MinecraftContrastive video-text reward in open-world env. NeurIPS 2022.

First pick: LRM for closed-loop RL fine-tuning, RoboReward for episode-level scoring, TOPReward if you want zero training.

1.2 Learned video / preference reward models. Encoders trained explicitly to predict reward, progress, or preference from robot video — typically distilled or aligned beyond a frozen VLM.
#ModelYrTeamCode / linkBackboneReward outputTraining sourceNotes
1ReWiND2025USC LIRAproject · arXivVideo-language transformerDense language-conditioned scalarSmall demo set; reverse-aug failuresSplits videos forward / reverse to synthesize failures. real-world bimanual gain. CoRL 2025 Oral + RSS Best Paper.
2SARM (Stage-Aware RM)2025Stanford / BerkeleyLeRobot · project · arXivVideo transformerStage + dense progressLong-horizon manipulation demosJoint stage + progress prediction. Native LeRobot integration. Handles T-shirt folding (variable duration).
3VLAC (Vision-Language-Action-Critic)2025arXiv 2509.15937arXiv · ⚠ no codeInternVLDense progress delta + doneHeterogeneous robot + humanUnified critic + policy; 30% → 90% real-world success in 200 episodes.
4GenFlowRL2025Yu et al.project · arXivStable Diffusion (flow gen)Dense shaped reward (delta-flow matching)Cross-embodiment demosObject-centric flow as reward proxy. ICCV 2025.
5TeViR2025CASarXivText-to-video diffusionDense distance-to-goalPretrained T2VCompares predicted vs observed images for dense rewards across 13 sim/real tasks.
6REDS2025Kim et al.GitHub · projectVideo encoder + contrastiveDense subtask-aligned rewardAction-free video segmentsEPIC-distance aligned dense reward. ICLR 2025.
7Video-Language Critic2024Aalto / Manchester / IntelGitHub · arXivCLIP4ClipContrastive temporal scalarOpen X-Embodiment2× sample efficiency on Meta-World via cross-embodiment RM. CoLLAs 2024.
8Diffusion Reward2024Huang et al.project · arXivConditional video diffusionDense −conditional-entropyExpert task videosRewards expert-like behaviors via diffusion conditional entropy. ECCV 2024.
9Video2Reward2024arXiv 2412.05515arXiv · ⚠ no codeVLM + iterative refineReward codeInternet videosIterative VLM refinement of reward for legged-robot tasks from animal video.
R1VIPER2023Berkeley + DeepMindproject · arXivAutoregressive video transformerLog-likelihood scalarExpert videosReference baseline — video-prediction log-prob as reward across 28 tasks. NeurIPS 2023.

First pick: ReWiND (RSS Best Paper, ships failure-aware data). Strong alternative: SARM for long-horizon tasks where stages matter (e.g., pour-place).

1.3 Success classifiers & trajectory verifiers. Score whole trajectories or detect task completion. Increasingly used as VLA verifiers at test time (the “robot ORM” pattern).
#ModelYrTeamCode / linkBackboneReward outputInputNotes
1Robometer2026arXiv 2603.02115GitHub · projectPretrained VLMDense per-frame + global preferenceRGB + langTrained on RBM-1M (1M+ trajectories incl. failures); dual objective learns from suboptimal data. RSS 2026.
2RoVer2025arXiv 2510.10975arXiv · ⚠ no codeRobot Process Reward ModelScalar + action directionVLA candidate actionsTest-time verifier for VLAs — plug-and-play on OpenVLA, π0, RDT.
3WorldGym (scalable video-world policy eval)2025arXiv 2511.11520arXiv · ⚠ no codeVideo world model + VLMReward + rolloutRGB + actionsMC rollouts inside world model with VLM as reward. Used for policy evaluation.
4WorldEval2025arXiv 2506.00613arXivVideo world modelEval scoringRGB + actionsFrames policy eval as world-model rollouts. Companion to WorldGym.
R1SuccessVQA2023Berkeley / DeepMindarXivFlamingoYes/no scalarClip + questionReference baseline — success detection as VQA. ICML 2023.
R2Concept2Robot2020/21StanfordprojectVideo action classifier (Sth-Sth)Binary / scoreRGB videoReference baseline — Sth-Sth-V2 classifier as policy reward.
R3VICE2019BerkeleyarXivCNN success classifierSparse binaryGoal imagesReference baseline — classifier-from-goal-examples as RL reward.

First pick: Robometer if you need to score real rollouts; RoVer as a test-time VLA verifier you can drop in over an existing policy.

1.4 Inverse RL / preference-based RL for robotics. Learn a scalar reward from human (or VLM) pairwise preferences over trajectories. The classical PbRL line, with 2024–2025 work adding multimodal / non-Markovian models.
#MethodYrTeamCode / linkRM architecturePref sourceNotes
1PRIMT2025Purdue / IU / UIUCproject · arXivVLM + LLM hybrid (neuro-symbolic)Foresight + hindsight FM-synthesizedNeurIPS 2025 Oral. Counterfactual trajectory augmentation; cuts human cost dramatically.
2ICPL2024Yu et al.arXiv · ⚠ no codeGPT-4 in-contextFew in-context human prefs30× fewer queries than classical PbRL. NeurIPS 2024.
3PrefMMT2024arXiv 2409.13683project · arXivMultimodal TransformerD4RL + Meta-WorldHierarchical multimodal transformer for state-action preferences.
4RIME2024Cheng et al.arXivMLP reward + sample-selectionNoisy prefsWarm-start discriminator → robust to label noise. ICML 2024.
5IPL (Inverse Preference Learning)2023StanfordarXivQ-function only (no RM)Offline pref pairsEliminates the reward model — Q encodes all reward info. NeurIPS 2023.
R1Preference Transformer2023KAISTarXivTransformer over trajectoriesHuman prefsReference baseline — non-Markovian preference reward. ICLR 2023.
R2SURF2022Park et al.OpenReviewMLPFew labels + pseudo-labelsReference baseline — semi-supervised PbRL. ICLR 2022.
R3RUNE2022BerkeleyGitHubMLP + uncertaintyHuman prefsReference baseline — reward uncertainty as exploration bonus.
R4PEBBLE2021BerkeleyarXiv 2106.05091MLPHuman prefsReference baseline — unsupervised pre-training + relabeling. ICML 2021.

2024–2025 trend: replace human teachers with VLM / LLM judges (PRIMT, ICPL) — the line between PbRL and §1.1 is collapsing.

1.5 World-model / value-function reward. Reward arrives from a learned world model — either an explicit value head, prediction error, or VLM scoring inside imagined rollouts.
#ModelYrTeamCode / linkBackboneReward outputNotes
1V-JEPA 2 / 2-AC (v2.1)2026Meta FAIRGitHub · arXivV-JEPA video encoderImplicit value via latent distance1M+ hours internet video + 62 h robot. Zero-shot to new labs. Most mature open value-head world model.
2World-VLA-Loop2026arXiv 2602.06508arXiv · ⚠ no codeState-aware video world modelJoint future obs + rewardClosed-loop joint refinement of world model and VLA.
3RoboScape-R2025arXiv 2512.03556arXiv · ⚠ no codeEmbodied world model"Endogenous" intrinsic reward from dynamicsReward = world-model state-transition disagreement. +37.5% OOD.
4VLA-RFT2025arXiv 2510.00406arXiv · ⚠ no codeWorld model simulatorDense trajectory rewardRL fine-tuning of VLA inside data-driven world model; beats SFT in 400 steps.
5GE-Sim 2.0 (Genie Envisioner)2025AgiBotproject · arXivAction-conditioned video diffusion + judgeWorld-judge rewardIntegrated world-judge scores generated rollouts against task instructions.
R1UniSim2024Berkeley / DeepMindarXiv 2310.06114Video diffusion world simReward + obsReference baseline — policy trained entirely in video world model; 81% real-world transfer. ICLR 2024 Outstanding.
1.6 LLM-generated reward code. Use an LLM to write a Python reward function (and sometimes the environment). The Eureka family. Best fit when you have access to env source code or a structured state.
#MethodYrTeamCode / linkLLMOutputNotes
1STRIDE2025arXiv 2502.04692arXiv · ⚠ no codeGPT-4 + agentic engineReward codeAgentic reward design for humanoid locomotion; 2.5× over Eureka.
2REvolve2024Örebroproject · arXivGPT-4 + evolutionaryReward code (NL feedback in loop)Tested on AD + humanoid + dex manipulation.
3EurekaVerse2024UPennprojectGPT-4Reward + environment codeGenerates curriculum + reward together. CoRL 2024.
4DrEureka2024NVIDIA / UPennGitHub · arXivGPT-4Reward code + DR paramsJoint reward + domain-randomization design for sim-to-real. RSS 2024.
5Auto-MC-Reward2024Li et al.project · arXivGPT-4 (3-agent loop)Dense reward codeDesigner / Critic / Analyzer agents close the loop. CVPR 2024.
6Text2Reward2024HKU / NTUproject · arXivGPT-4Dense Python rewardFirst free-form dense reward code synthesis; matches expert rewards on 13/17 tasks. ICLR 2024.
7Eureka2023NVIDIA / UPenn / Caltechproject · arXivGPT-4 (evolutionary)Reward codeBeats human-engineered rewards on 83% of 29 RL tasks across 10 morphologies. ICLR 2024 Oral.
R1L2R (Language to Reward)2023Google DeepMindproject · arXivPaLM-2Sparse reward template + MPCReference baseline — language → reward → MPC. CoRL 2023.

First pick depends on env: DrEureka if sim-to-real matters, EurekaVerse if you also want auto-generated environments.

1.7 Foundation-model RLHF for VLAs. RL post-training of vision-language-action policies — the "RLHF for robots" frontier. Reward is supplied by a learned RM (§1.1–§1.3), verifiable env signal, or implicit preference.
#MethodYrTeamCode / linkPolicy classReward signalNotes
1StARe-VLA2025arXiv 2512.05107arXiv · ⚠ no codeVLA + stage-aware rewardProgressive stage rewardProgressive stage-aware reward for VLA training.
2CO-RFT2025arXiv 2508.02219arXiv · ⚠ no codeVLA + critic headQ-value over chunked actionsChunked offline RL fine-tuning of VLAs with critic head.
3RL-VLA empirical study2025arXiv 2505.19789project · arXivRL on OpenVLA-classVerifiable env rewardShows RL > SFT for VLA generalization in Execution / Semantics. Useful as recipe.
4ManipLVM-R12025arXiv 2505.16517arXiv · ⚠ no codeLarge VLM + RL reasoningVerifiable reward+144% IoU on affordance tasks via RL fine-tuning.
5GRAPE2025aiming-labGitHub · arXivOpenVLA + DPOImplicit preference rewardTrajectory-level VLA preference alignment with VLM-generated stage constraints. Cleanest open RLHF-for-VLA recipe.
R1RT-22023Google DeepMindarXivPaLI-X / PaLM-E VLA(RL-fine-tunable; no explicit RM)Reference baseline — the VLA paradigm that subsequent RL work builds on.
1.8 Benchmarks & surveys (robotics).
ItemYrLinkWhat it measures
RoboReward-Bench2026OpenReview · arXivEnd-of-episode VLM-reward accuracy across 22 VLMs on real-robot tasks.
OpenGVL2025GitHub · arXivVLM temporal progress prediction for data curation (human + robot embodiments).
RBM-1M (Robometer dataset)2026project1M+ multi-embodiment trajectories incl. failures for reward training / eval.
RoboArena2025arXivDistributed real-world generalist-policy evaluation (used by RoboReward).
B-Pref2021GitHub · arXivPbRL benchmark with simulated irrational teachers. NeurIPS 2021.
Survey: RL of VLA Models2025Awesome-RL-VLA · TechRxivComprehensive survey of RL training of VLAs; explicit reward-modeling subsection.
Survey: Large VLM-based VLAs for Manipulation2025arXivVLM-based RM shaping covered as core dimension.
Survey: Foundation Models for Robot Manipulation2024/25arXivReward learning treated as one of the key categories.
Survey: World Model for Robot Learning2026project · arXivCovers value / reward heads on world models.
List: Awesome-Embodied-VLA-VA-VLNGitHubContinuously updated index — useful tracker.

Blog / lab pages: NVIDIA — Eureka · RAI Institute — CoRL 2024 round-up · Robohub — ReWiND interview · ActiveModels — V-JEPA 2 guide.

2. Process Reward Models (PRMs) — reasoning

PRMs score every intermediate step of a reasoning trajectory rather than only the final answer. 2024 was the breakout year (Math-Shepherd, OmegaPRM, ReST-MCTS); 2025 brought generative / verifier-style PRMs that "think before scoring"; 2026 expands to multimodal, code, and agent trajectories.

2.1 Math / reasoning PRMs.
#ModelYrTeamCode / linkBaseTrainingNotes
1DeepSeekMath-V22026DeepSeek-AIarXivDeepSeek-V3-classVerifier as central RM; verification-time scaling labels new hard proofsGold on IMO 2025 / CMO 2024; 118/120 on Putnam 2024.
2R-PRM2025NJU NLPGitHub · arXivQwen2.5-MathCold-start CoT + self-evolving preference opt+13.9 F1 on ProcessBench; EMNLP 2025.
3ThinkPRM2025CMUGitHub · HF · arXivR1-Distill-Qwen 1.5B / 7BOnly 1k synthetic verification CoTsExtremely data-efficient generative PRM; scales by thinking longer.
4GenPRM2025TsinghuaarXivQwen2.5-MathCoT + executes verification codeScales test-time compute of PRMs themselves.
5Qwen2.5-Math-PRM 7B / 72B2025Alibaba QwenHF 7B · HF 72B · arXivQwen2.5-MathHybrid MC + consensus filteringStrongest open math PRM through most of 2025.
6PRIME / Implicit PRM2025Tsinghua + UIUCarXivQwen2.5-Math-7BImplicit PRM from ORM via log-likelihood ratios26.7% AIME pass@1 with only 10% of Qwen2.5-Math-Instruct's data.
7PURE2025arXiv 2504.15275arXivMin-form credit assignmentMin-of-future-rewardsEliminates reward hacking from summation-form credit; matches verifiable RL with 30% steps.
8Skywork-o1-Open-PRM (1.5B / 7B)2024Skywork AIHF · GitHubQwen2.5-Math-7B-Instruct7B matches Qwen2.5-Math-RM-72B; 96.7% GSM8K BoN.
9AceMath-72B-RM2024NVIDIAHF · projectBT outcome RM + step dataSOTA on AceMath-RewardBench rm@8.
10Math-PSA / OpenR2024OpenR collab.arXivQwen2.5-Math-7B-InstructPRM800K + Math-Shepherd + MATH-APSReference open-source framework for o1-style reasoning.
11OmegaPRM2024Google DeepMindarXivGemini ProDivide-and-conquer MCTS auto-labels 1.5M stepsLifted Gemini Pro to 69.4% MATH (+36% rel).
12ReST-MCTS*2024THUDMGitHub · arXivTree-search probability of correct answerSelf-bootstrapping policy + PRM. NeurIPS 2024.
R1Math-Shepherd2023DeepSeek + PKUarXivMistral-7BMC rollout auto-annotationReference baseline — first widely-used automatic step-annotation.
R2PRM800K ("Let's Verify Step by Step")2023OpenAIGitHub · arXivHuman-labeled 800K step-correctnessReference baseline — the dataset that started the field.
2.2 Generative / verifier-style PRMs. Emit a verification chain-of-thought instead of a scalar — interpretable and harder to hack.
#ModelYrTeamLinkDistinctive idea
1PathFinder-PRM2025arXiv 2505.19706arXivError-aware hierarchical PRM — math vs consistency dimensions before scoring.
2Dyve (Think Fast and Slow)2025Awesome-PRM listlistAdaptive system-1 / system-2 verification per step.
3Retrieval-Augmented PRM2025arXiv 2502.14361arXivTwo-stage retrieval of similar Q / steps → better OOD generalization.
4AURORA2025arXiv 2502.11520arXivUniversal generative PRM; ensemble prompting + reverse verification; ships UniversalBench.
5FreePRM2025arXiv 2506.03570arXivLabel-free PRM from outcome signals; beats supervised Math-Shepherd by +24 F1.
2.3 Code & agent PRMs.
#ModelYrTeamLinkNotes
1SecCodePRM2026CMUGitHub · arXivStep-level security scores; +12% over LLMxCPG static-analysis pipeline.
2AgentPRM2025arXiv 2511.08325arXivStep-wise promise + progress; TD-based labels. >8× compute-efficient vs baselines.
3SWE-PRM ("Act Like You're Paying")2025IBMarXivTaxonomy of agent inefficiencies. SWE-bench Verified 40.0 → 50.6%, $0.2 added cost/trajectory.
4AgentRM2025THUNLPGitHub · arXivGeneralizable RM across 9 agent tasks (web, embodied, games, tools). ACL 2025.
5CodePRM2025ACL FindingsACLReasoning + execution feedback input; pairs with Generate-Verify-Refine decoding.
2.4 Multimodal PRMs. Active 2025–2026 frontier.
#ModelYrTeamLinkNotes
1VisualPRM-8B2025Shanghai AI Lab / InternVLarXivShips VisualPRM400K + VisualProcessBench. +5.9 pts on 7 multimodal benches on InternVL2.5-78B.
2Athena-PRM2025arXiv 2506.09532arXivSOTA on VisualProcessBench with just 5k samples.
3MM-PRM2025arXiv 2505.13427arXivMultimodal PRM family.
4VLPRM2025arXiv 2509.23250arXivVision-language PRM.
2.5 Benchmarks & survey.
ItemYrLinkFocus
PRMBench2025GitHub · arXivFine-grained: simplicity / soundness / sensitivity. 83,456 step labels. ACL 2025.
ProcessBench (Qwen)2024arXivFirst-error identification on 3.4k competition / olympiad problems.
VisualProcessBench2025arXivMultimodal step verification.
Socratic-PRMBench2025arXivReasoning-pattern coverage for PRMs.
MR-Ben2024arXivMeta-reasoning across physics / chem / logic / code.
AceMath-RewardBench2024HFMath reward-model leaderboard (rm@8).
Survey: Survey of Process Reward Models2025/26arXiv · Awesome-PRMsOutcome → process supervision; notes length / verbosity hacking.
Insight: GRPO is Secretly a PRM2025arXivShows GRPO+ORM ≡ MC-based PRM-aware RL; proposes λ-GRPO to fix step-imbalance.

3. LLM / RLHF Reward Models

Reward models for aligning chat / instruction-following LLMs via RLHF, RLAIF, DPO, and best-of-N. 2024 saw open RMs catch up to closed labs; 2025 split into two frontiers — (a) scale-and-curate scalar RMs and (b) reasoning / generative critics — while RLVR (Tülu 3) and rule-based rewards increasingly replace learned RMs for verifiable tasks. Process / step-level RMs are covered separately in §2.

3.1 Scalar / Bradley–Terry preference RMs. The classifier-style RM that dominates production RLHF pipelines.
#ModelYrTeamCode / linkBaseOutputTraining dataNotes
1Skywork-Reward-V22025Skywork AI / 2050 ResearchHF · GitHub · arXivLlama-3.2 / Qwen3 0.6–8BScalar BTSynPref-40M (26M curated pairs)Top of RewardBench v1/v2, PPE, RM-Bench, RMB, JudgeBench. 1.7B model beats prior 70B SOTA.
2Decision-Tree-Reward-Gemma-2-27B2025RLHFlowblog · HFGemma-2-27BMulti-objective + tree gateHelpSteer2 + Skywork-Reward-GemmaBriefly 95.4% RewardBench SOTA; interpretable decision paths.
3INF-ORM-Llama3.1-70B2025INF.AIHFLlama-3.1-70B-InstructScalar (scaled BT)INF-ORM-Pref-Magnitude-80KBriefly #1 on RewardBench in early 2025 via magnitude-weighted BT.
4Llama-3.1-Nemotron-70B-Reward2024NVIDIAHF · arXivLlama-3.1-70B-InstructBT + SteerLM regression hybridHelpSteer2-Preference (10k pairs)Powered Nemotron-70B-Instruct policy.
5Skywork-Reward (v1)2024Skywork AIHF · GitHub · arXivLlama-3.1-8B / Gemma-2-27BScalar BTSkywork-Reward-80K"Bag of tricks" paper; canonical open RM baseline.
6Athene-RM-70B / -8B2024NexusflowHF 70BLlama-3-70B/8B-InstructScalar BTCurated Arena-styleTrained the Athene-70B policy that briefly matched GPT-4 on Arena.
7ArmoRM-Llama3-8B2024RLHFlow / UIUCHF · arXivLlama-3-8BMulti-objective + MoE gateUltraFeedback + HelpSteer + others19 fine-grained objectives with context-aware MoE gating. Long-time RewardBench leader; still a strong baseline.
8InternLM2-Reward (1.8B / 7B / 20B)2024Shanghai AI LabHFInternLM2-Chat-SFTScalar BT2.4M EN+ZH pairsStrong bilingual RM family.
9GRM-Llama3-8B2024Ray2333 et al.HF · arXivLlama-3-8BScalar + generative regularizationUltraFeedback + Unified-FeedbackSFT-regularization mitigates reward hacking.
10Eurus-RM-7B2024OpenBMB / TsinghuaGitHub · arXivMistral-7BScalar BTUltraInteract + UltraFeedback + UltraSafetyRM specialized for reasoning / code preferences.
R1Starling-RM-7B-alpha2023Berkeley NESTHF · projectLlama-2-7BK-wise scalarNectar (183k prompts, GPT-4)Reference baseline — popular early open RM.
R2UltraRM-13B2023OpenBMB / TsinghuaHF · arXivLlama-2-13BScalar BTUltraFeedback + HH-RLHF + SHP + summarizationReference baseline — basis for many follow-ups.
R3OpenAssistant RM (DeBERTa-v3)2023LAION / OAHFDeBERTa-v3-large (435M)Scalar BTOA + WebGPT + summaryReference baseline — first broadly-used small drop-in scorer.

First pick: Skywork-Reward-V2 if SOTA matters; ArmoRM if multi-objective interpretability matters; Nemotron-70B-Reward if you're already in the NVIDIA stack.

3.2 Generative / LLM-as-a-judge RMs. Produce a critique + verdict in natural language; scale with inference-time compute.
#ModelYrTeamCode / linkBaseOutputNotes
1J1 (Llama-8B / 70B)2025Meta FAIRarXivLlama-3 8B / 70BReasoning + pairwise verdictRL-trained "thinking" judge; beats DeepSeek-GRM & distilled R1 judges on non-verifiable tasks.
2RM-R12025UIUCGitHub · arXivQwen2.5 / Llama-3CoT + Chain-of-Rubrics + verdict"Reward modeling as reasoning"; +4.9% over much larger RMs on three RM benches.
3DeepSeek-GRM-27B2025DeepSeek + TsinghuaarXivDeepSeek-V2-Lite-27BPointwise generative critique + scoreSelf-Principled Critique Tuning (SPCT); 27B matches 70B+ via inference scaling.
4Skywork-Critic-Llama-3.1 (8B / 70B)2024Skywork AIHF 70BLlama-3.1-InstructPairwise verdictTopped RewardBench among generative judges in Sep 2024.
5Self-Taught Evaluator2024Meta FAIRarXivLlama-3-70B-InstructCoT pairwise judgeSelf-bootstrapped: RewardBench 75.4 → 88.3 with zero human labels.
6GenRM / GenRM-CoT2024Google DeepMindarXivGemma / PaLM-2Next-token Yes/No + CoTFoundational "reward modeling as next-token prediction". +20% on reasoning BoN.
7Prometheus-2 (7B / 8x7B)2024KAISTGitHub · arXivMistral-7B / Mixtral-8x7BScore + critique (direct & pairwise)Most-used open evaluator; merges absolute scoring + pairwise.
8Themis-8B2024PKU ONELabGitHub · arXivLlama-3-8BAspect-aware score + explanation58 NLG datasets, 500k samples; beats GPT-4 on several tasks.
R1Auto-J-13B2023GAIR / SJTUGitHub · arXivLlama-2-13B-chatPairwise + critiqueReference baseline — early influential open generative judge.
R2JudgeLM (7B / 13B / 33B)2023BAAIGitHub · arXivVicunaPairwise score + rationaleReference baseline — established fine-tuned LLM judges as a viable GPT-4 alternative.
3.3 Multi-objective / fine-grained RMs.
#ModelYrTeamLinkOutputNotes
1HelpSteer3 / Llama-3.3-Nemotron-Reward2025NVIDIAHF dataset5+ attributes (helpful, correct, coherent, complex, verbose)Newest HelpSteer with multilingual + STEM expansions.
2Decision-Tree-Reward2025RLHFlowblogMulti-objective + decision-tree gateCombines multi-obj regression with small decision tree for explainability.
3ArmoRM2024RLHFlowarXiv19 fine-grained objectives + MoECanonical multi-objective RM (also listed in 3.1).
4HelpSteer2 SteerLM-RM2024NVIDIAarXiv5-dim regressionPermissive 10k dataset that drove SteerLM-style regression RMs to SOTA.
R1FLASK2023KAISTarXiv12 skill dimensionsReference baseline — established fine-grained skill-set evaluation. ICLR 2024.
3.4 Pairwise & reward-free methods. Included for context — RM-free alternatives that often replace explicit RMs in production.
#MethodYrLinkNotes
1KTO2024arXivProspect-theory loss; only binary (good/bad) labels — no pairs.
2PairRM (0.4B)2023HFDeBERTa pairwise scorer; near-GPT-4 agreement at tiny size. Widely used for DPO data curation.
3DPO implied reward2023arXivReward-free; policy log-ratio with reference encodes implicit reward.
4IPO2023arXivSquared-loss fix for DPO's unbounded reward-gap growth.
R1LLM-Blender2023GitHubReference baseline — pairwise ranking + generative fusion ensemble; parent of PairRM.
3.5 Constitutional / rule-based / RLAIF reward systems.
#SystemYrTeamLinkNotes
1OpenAI Rule-Based Rewards (RBR)2024OpenAIblog · arXiv · GitHubLLM-graded composable rule prompts as RL reward. F1 91.7 → 97.1 on safety.
2Meta-Rewarding LM2024Meta FAIRarXivMeta-judge role on top of Self-Rewarding — judges the judgments.
3Self-Rewarding LM2024Meta FAIRarXivSingle LLM acts as actor + judge; iterative DPO improves both.
R1Anthropic CAI2022Anthropicblog · arXivReference baseline — introduced RLAIF: RM from AI prefs against a written constitution. Basis for Claude HH training.
3.6 Benchmarks & surveys.
ItemYrLinkWhat it measures
RewardBench 22025arXiv · HFHarder multi-skill RM accuracy; correlates with BoN + PPO downstream. ~20 pt lower than v1.
JudgeBench2024arXivVerifiable knowledge / reason / math / code pairs. ICLR 2025.
PPE (Preference Proxy Evaluations)2024arXiv · GitHubFirst RM bench predictive of post-RLHF Arena scores. 16k Chatbot-Arena pairs + 80k verifiable completions.
RM-Bench2024arXivSensitivity to subtle content edits + style-bias resistance. ICLR 2025 Oral.
RMB2024arXiv49 real-world scenarios × helpful / harmless. 18k BoN-aware pairs.
MJ-Bench2024arXivMultimodal judges for T2I: alignment / safety / quality / bias.
RewardBench (v1)2024arXiv · GitHubFirst standardized RM leaderboard; de-facto baseline.
Survey: Comprehensive Survey of Reward Models2025arXivTaxonomy, applications (VL, multilingual, RAG), challenges, future.
Survey: Secrets of RLHF Part II — Reward Modeling2024HF paperPractitioner guide to RM training tricks.
List: Awesome-Reward-ModelsGitHubContinuously updated index.

Blog / lab posts: AI2 — RewardBench · AI2 — Tülu 3 / RLVR · HF — Illustrating RLHF · Interconnects — Tülu 3 · Interconnects — o3 over-optimization · RLHFlow — Multi-objective RM & MoE.

4. Vision / Multimodal Generation Reward Models

RMs for aligning image, video, 3D, and motion generation. 2025 shifted from CLIP-based scorers to VLM backbones (Qwen2-VL, InternVL, LLaVA-OneVision), and from scalar outputs to generative / CoT scoring with explicit rationales.

4.1 Text-to-image (T2I) reward models.
#ModelYrTeamCode / linkBackboneOutputNotes
1UnifiedReward-Flex2026CodeGoat24 (Fudan)GitHub · arXivQwen2.5-VLPairwise + pointwise; dynamic hierarchical multi-aspectContext-adaptive reasoning instantiates fine-grained criteria on-the-fly; tested with FLUX.1-dev, FLUX.2-klein, Wan2.1/2.2.
2RewardDance2025ByteDanceHF · arXivInternVL 1B–26BGenerative "yes-token" prob (pairwise)First serious scaling-laws study for visual RMs; reward variance stays high (resists hacking) up to 26B.
3HPSv32025MizzenAIGitHub · HF · arXivQwen2-VL-7BScalar + uncertainty-aware rankingHPDv3 — 1.08M text-image pairs, 1.17M comparisons. Introduces Chain-of-Human-Preference (CoHP). ICCV 2025.
4UnifiedReward / -Think2025CodeGoat24 / FudanGitHub · arXivLLaVA-OneVisionPairwise + pointwise across image/video/understandingFirst unified RM covering understanding + image + video. Think variant adds GRPO RL on long CoT.
5IXC-2.5-Reward2025Shanghai AI Lab (InternLM)arXivInternLM-XComposer2.5Scalar reward head over text / image / videoTop open RM on VL-RewardBench (70.0% macro acc, beats Gemini-1.5-Pro & GPT-4o). ACL Findings 2025.
6VisionReward-Image2024Zhipu AI / TsinghuaGitHub · arXivCogVLM2 backboneMulti-dimensional fine-grained (interpretable linear weights)Built for stable RLHF; pairs with MPO algorithm. AAAI 2026.
7MPS (Multi-dimensional Preference Score)2024Zhang et al.arXivCLIP + preference-condition module4 dimensions (aesthetics / alignment / detail / overall)MHP — 918k choices on 607k images. CVPR 2024.
8RAHF (Rich Automatic Human Feedback)2024Google + UCSD/USC/CambridgeGitHub · arXivViT + T5Plausibility / alignment / aesthetic scalars + spatial heatmaps + token-level misalignmentCVPR 2024 Best Paper. Goes beyond a single scalar.
9Q-Align2024Q-FutureGitHub · arXivmPLUG-Owl2 LMMDiscrete text-level rating mapped to scalarsTreats quality scoring like a human study via text levels. ICML 2024.
10VQAScore2024CMU / MetaGitHub · arXivCLIP-FlanT5P("Yes" | "Does this show {text}?")Beats CLIPScore / PickScore on compositional prompts; zero-shot image / video / 3D. ECCV 2024.
R1PickScore + Pick-a-Pic2023Stability AI / Tel AvivarXivCLIP-H finetuneScalarReference baseline — 500k+ in-the-wild prefs. NeurIPS 2023.
R2HPSv22023CUHK MMLabGitHub · arXivCLIP finetuneScalarReference baseline — HPDv2 with 798k pairwise choices.
R3ImageReward2023Zhipu / TsinghuaGitHub · arXivBLIP + MLP headScalarReference baseline — first general-purpose T2I RM; ships ReFL fine-tuning. NeurIPS 2023.
4.2 Text-to-video (T2V) reward models.
#ModelYrTeamCode / linkBackboneOutputNotes
1PhysCorr / PhysicsRM2025arXiv 2511.03997arXivDual PhyScore (intra-object stability + inter-object interaction)Plugs into PhyDPO for physics-grounded video DPO.
2VideoScore22025TIGER-AI-LabGitHub · arXivQwen2.5-VL-7BVisual / text-alignment / physical-commonsense scores + CoT"Think before scoring" — first generative video RM with structured rationales. VideoFeedback2 (27k annotated).
3VideoReward / VideoAlign2025Kling team (Kuaishou)GitHub · HF · arXivVLM + Bradley-Terry-with-TiesVisual Quality / Motion Quality / Text Alignment182k prompt-video triplets; ships Flow-DPO / Flow-RWR / Flow-NRG for rectified-flow video models. NeurIPS 2025.
4VisionReward-Video2024Zhipu / TsinghuaGitHub · arXivCogVLM2-VideoFine-grained multi-aspect (linearly weighted)Beats VideoScore by +17.2% pair-acc; CogVideoX+MPO yields ~27% win-rate uplift. AAAI 2026.
5LiFT / LiFT-Critic2024CUHKarXivVILA-1.5 VLMSemantic consistency / motion smoothness / video fidelity + reasoningFirst end-to-end T2V RLHF pipeline (RM + DPO on CogVideoX).
R1VideoScore + VideoFeedback2024TIGER-AI-LabGitHub · arXivMantis-Idefics2-8B5 aspects (VQ / TC / Dynamic / TextAlign / Factual)Reference baseline — first fine-grained learned video RM. EMNLP 2024.
4.3 3D / motion reward models.
#ModelYrTeamLinkOutputNotes
1PhyMotion2026phy-motion.github.ioprojectThree physics-grounded axes (kinematic / contact-balance / dynamic)SMPL recovery → MuJoCo retarget → physics scoring; beats 2D-image rewards for motion realism.
2DreamCS / RewardCS2025arXiv 2506.09814arXivGeometry-aware mesh qualityFirst 3D geometry-aware RM trained on unpaired data; beats 2D RMs for text-to-3D.
3MotionCritic2025Ou et al.GitHub · arXivPlug-and-play critic; perceptual-alignment lossMotionPercept — 52k human pref pairs over generated motions. ICLR 2025.
R1DreamReward / Reward3D2024THUGitHub · arXivScalarReference baseline — first general-purpose 3D RM. 25k expert comparisons. ECCV 2024.
4.4 MLLM-as-judge for generation. Training-free; relies on a strong MLLM.
MethodYrLinkNotes
GPT-4o / GPT-4V as judge2024/25Standard prompted scoring; backbone for VIEScore and many VBench/T2V-CompBench variants. Matches human-human correlation on generation, weaker on editing.
Gemini-1.5/2.5-Pro as judge2024/25Long-context advantage for video judging; used as generalist scorer in VBench-2.0.
VIEScore2024GitHub · arXivSemantic + perceptual scores with rationales; GPT-4o variant reaches ~0.40 Spearman vs human 0.45. ACL 2024.
VideoGen-Eval2025arXivAgent-based judge — LLM structuring + MLLM judgment + temporal patch tools over 700 prompts / 12k videos.
4.5 Benchmarks for evaluating vision-generation RMs.
BenchmarkYrLinkFocus
VideoGen-RewardBench2025HF26.5k (prompt, vidA, vidB) triplets; expert pairwise; 12 SOTA T2V models.
VBench-2.02025arXiv · project5 "intrinsic faithfulness" dimensions (Human / Controllability / Creativity / Physics / Commonsense).
VideoPhy / VideoPhy-22024/25arXivPhysical-commonsense; ships VideoPhy-2-AutoEval auto-judge. ICLR 2026.
T2V-CompBench2025arXiv1,400 prompts × 7 compositional axes across 23 T2V models. CVPR 2025.
VBench / VBench++2024GitHub16-dim T2V / I2V benchmark; dominant T2V leaderboard. CVPR 2024 Highlight.
GenAI-Bench2024arXiv1,600 compositional T2I/T2V prompts + 80k human ratings; default for VQAScore.
ImagenHub2024arXivUnified library + benchmark over 7 conditional image-generation tasks. ICLR 2024.
EvalCrafter202417 sub-dimensions complementary to VBench. CVPR 2024.

5. Cross-cutting trends & reading list

Trends across all four families (2025 → 2026)

Top reading list