Model Overview
Description:
Qwen3-Nemotron-32B-GenRM-Principle is a large language model that leverages Qwen3-32B as the foundation and is fine-tuned to predict the extent to which LLM-generated responses fulfils user-specified principles.
Given a conversation with multiple turns between user and assistant and a user-specified principle, it rates the quality of the final assistant turn using a reward score.
For the same prompt, a response with higher reward score fulfils the user-specified principle to a larger extent than another response with a lower reward score.
As of 24 Sep 2025, this model achieves
JudgeBench of 81.4% and
RM-Bench of 86.2% which make it the top Generative Reward Models for both benchmarks.
See details on how this model was trained at
https://arxiv.org/abs/2509.21319
License/Terms of Use:
GOVERNING TERMS: Use of this model is governed by the
NVIDIA Open Model License.
Deployment Geography
Global
Use Case:
Qwen3-Nemotron-32B-GenRM-Principle labels an LLM-generated response to a user query and a user-specified principle with a reward score.
Release Date:
References:
RM-Bench LeaderBoard
As of 24 Sep 2025, our reward model is the top performing generative reward models on
RM-Bench, an improved variant of RewardBench for evaluating Reward Models in Chat, Math, Code and Safety.
JudgeBench LeaderBoard
As of 24 Sep 2025, our reward model is the top performing models on
JudgeBench, a popular benchmark for evaluating LLM-as-a-judge applications relating to General Knowledge, Logical Reasoning, Math and Coding.
Model Architecture:
Architecture Type: Transformer
Network Architecture: Qwen3
We developed this model using
Qwen/Qwen3-32B as its foundation. This model contains 32 billion parameters.
Input:
Input Type(s): Text
Input Format: String
Input Parameters: One Dimensional (1D)
Other Properties Related to Input: Max of 128k tokens (but trained only on conversations up to 8K tokens)
Output:
Output Type(s): Float
Output Format: One Single Float
Output Parameters: One-Dimensional (1D)
Other Properties Related to Output: The float value represents the extent to which the response fulfils the user-specified principle, with a higher value representing greater fulfilment.
Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA’s hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions.
Software Integration:
Runtime Engine(s):
Supported Hardware Microarchitecture Compatibility:
- NVIDIA Ampere
- NVIDIA Hopper
- NVIDIA Turing
Supported Operating System(s): Linux
Quick Start
You can use the model using HuggingFace Transformers library with 1 or more 80GB GPUs (NVIDIA Ampere or newer) with at least 70GB of free disk space to accomodate the download. Alternatively, you can use vLLM for accelerated inference.
This code has been tested on Transformers v4.57.0, torch v2.3.0a0+40ec155e58.nv24.3 and 1 H100 80GB GPUs, but any setup that supports Qwen/Qwen3-32B should support this model as well. If you run into problems, you can consider doing pip install -U transformers.
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_name = "nvidia/Qwen3-Nemotron-32B-GenRM-Principle"
5
6model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16, device_map="auto")
7tokenizer = AutoTokenizer.from_pretrained(model_name)
8
9prompt = "What is 1+1?"
10good_response = "1+1=2"
11bad_response = "1+1=3"
12principle = "correctness"
13
14for response in [good_response, bad_response]:
15 messages = [{'role': "user", "content": prompt}, {'role': "assistant", "content": response}, {'role': "principle", "content": principle}]
16 tokenized_message = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt", return_dict=True)
17 response_token_ids = model.generate(tokenized_message['input_ids'].cuda(),attention_mask=tokenized_message['attention_mask'].cuda(), max_new_tokens=16000, return_dict_in_generate=True, output_scores=True)
18 response = tokenizer.decode(response_token_ids.sequences[0].tolist())
19 score_max = torch.max(response_token_ids.scores[-2][0]).item() # normalize max score to zero to match vLLM logprobs and clip others to -50 if they return -inf for too small of a value. The same should be done if the required tokens is not returned by vLLM's top k logprobs.
20 score_no = max(response_token_ids.scores[-2][0][2308].item() - score_max, -50) # token for " No"
21 score_yes = max(response_token_ids.scores[-2][0][7414].item() - score_max, -50) # token for " Yes"
22 reward = score_yes-score_no
23 print(response)
24 print(reward)
Model Version:
v1.0
Training, Testing and Evaluation Datasets:
Training Datasets:
Data Collection Method by dataset
- [Hybrid: Human, Synthetic]
Labeling Method by dataset
Properties:
- 77,564 prompt-responses, each annotated with up to 3 annotations of free-text feedback (each being 50-250 words long) elaborating upon the overall helpfulness of the response.
Testing Datasets:
Data Collection Method by dataset
- [Hybrid: Human, Synthetic]
Labeling Method by dataset
Properties:
- 4,078 prompt-responses, each annotated with up to 3 annotations of free-text feedback (each being 50-250 words long) elaborating upon the overall helpfulness of the response.
Evaluation Datasets
Data Collection Method by dataset
- [Hybrid: Human, Synthetic]
Labeling Method by dataset
- [Hybrid: Human, Synthetic]
Properties:
- 1,327 prompts, each with three pairs of responses as well as preferences between the pair of responses.
Data Collection Method by dataset
- [Hybrid: Human, Synthetic]
Labeling Method by dataset
- [Hybrid: Human, Synthetic]
Properties:
- 350 prompts, each with a pair of responses as well as preferences between the pair of responses.
Inference:
Engine: PyTorch
Test Hardware: H100, A100 80GB, A100 40GB
Ethical Considerations:
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their supporting model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
For more detailed information on ethical considerations for this model, please see the Model Card++
Explainability,
Bias,
Safety and Security, and
Privacy Subcards.
Please report security vulnerabilities or NVIDIA AI Concerns
here.
Citation
If you find this model useful, please cite the following work:
1@misc{wang2025rlbffbinaryflexiblefeedback,
2 title={RLBFF: Binary Flexible Feedback to bridge between Human Feedback | Verifiable Rewards},
3 author={Zhilin Wang and Jiaqi Zeng and Olivier Delalleau and Ellie Evans and Daniel Egert and Hoo-Chang Shin and Felipe Soares and Yi Dong and Oleksii Kuchaiev},
4 year={2025},
5 eprint={2509.21319},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2509.21319},
9}