Views
No views yet
| Model | Chat | Math | Code | Safety | Easy | Normal | Hard | Overall RM-Bench |
|---|---|---|---|---|---|---|---|---|
| Llama-3_3-Nemotron-Super-49B-GenRM-Multilingual | 77.2 | 91.9 | 74.7 | 92.9 | 90.7 | 86.7 | 75.1 | 84.2 |
| + voting@32 | 76.3 | 93.2 | 79.0 | 93.5 | 92.1 | 88.5 | 75.9 | 85.5 |
| Llama-3_3-Nemotron-Super-49B-GenRM | 73.7 | 91.4 | 75.0 | 90.6 | 91.2 | 85.7 | 71.2 | 82.7 |
| + voting@32 | 74.0 | 92.7 | 77.4 | 92.1 | 92.6 | 87.3 | 72.3 | 84.0 |
| Llama-3.3-Nemotron-70B-Reward-Multilingual | 86.2 | 82.4 | 66.8 | 94.1 | 86.5 | 85.4 | 80.0 | 82.4 |
| Llama-3.3-Nemotron-70B-Reward | 75.4 | 84.5 | 69.3 | 90.4 | 92.1 | 85.7 | 71.1 | 79.9 |
| Llama-3.1-Nemotron-70B-Reward | 70.7 | 64.3 | 57.4 | 90.3 | 92.2 | 76.8 | 48.0 | 70.7 |
| Skywork-Reward-Gemma-2-27B | 71.8 | 59.2 | 56.6 | 94.3 | 89.6 | 75.4 | 50.0 | 70.5 |
| Skywork-Reward-Llama-3.1-8B | 69.5 | 60.6 | 54.5 | 95.7 | 89.0 | 74.7 | 46.6 | 70.1 |
| Model | Knowl. | Reason. | Math | Code | Overall JudgeBench |
|---|---|---|---|---|---|
| Llama-3_3-Nemotron-Super-49B-GenRM | 71.4 | 73.5 | 87.5 | 76.2 | 75.1 |
| + voting@32 | 70.8 | 83.7 | 87.5 | 83.3 | 78.6 |
| Llama-3_3-Nemotron-Super-49B-GenRM-Multilingual | 64.9 | 74.5 | 87.5 | 73.8 | 72.3 |
| + voting@32 | 65.6 | 82.7 | 87.5 | 85.7 | 76.3 |
| Llama-3.3-Nemotron-70B-Reward | 70.8 | 76.5 | 82.1 | 66.7 | 73.7 |
| Llama-3.3-Nemotron-70B-Reward-Multilingual | 66.2 | 71.4 | 82.1 | 59.5 | 69.4 |
| Llama-3.1-Nemotron-70B-Reward | 62.3 | 72.5 | 76.8 | 57.1 | 66.9 |
| Skywork-Reward-Gemma-2-27B | 59.7 | 66.3 | 83.9 | 50.0 | 64.3 |
| Skywork-Reward-Llama-3.1-8B | 59.1 | 64.3 | 76.8 | 50.0 | 62.3 |
pip install vllm==0.8.3python3 -m vllm.entrypoints.openai.api_server \
--model "nvidia/Llama-3_3-Nemotron-Super-49B-GenRM-Multilingual" \
--trust-remote-code \
--seed=1 \
--host="0.0.0.0" \
--port=5000 \
--served-model-name "nvidia/Llama-3_3-Nemotron-Super-49B-GenRM-Multilingual" \
--tensor-parallel-size=8 \
--max-model-len=40000 \
--gpu-memory-utilization 0.95 \
--enforce-eager1from openai import OpenAI
2client = OpenAI(base_url="http://127.0.0.1:5000/v1", api_key="dummy")
3
4# when judging one response
5msg = [
6 {"role": "user", "content": "What is 1+1?"},
7 {"role": "assistant", "content": "1+1=2"},
8 {"role": "user", "content": "What about 1+2?"},
9 {"role": "response_1", "content": "1+2=4"}
10]
11
12completion = client.chat.completions.create(
13 model="nvidia/Llama-3_3-Nemotron-Super-49B-GenRM-Multilingual",
14 messages=msg,
15 temperature=0.0,
16 top_p=1.0,
17 max_tokens=32768,
18 stream=False
19)
20output = completion.choices[0].message.content
21print(output.split("</think>")[-1].strip())
22"""
23[The Begin of Analysis on Response 1]
24Response 1 states "1+2=4", which is incorrect because the correct result of 1+2 is 3. While the response is clear and directly addresses the query, its **Correctness/Completeness** is severely flawed due to the error. The mistake makes the response **Not Helpful** as it fails to provide the accurate information requested. Other factors like **Coherence** and **Relevance** are satisfactory, but the critical inaccuracy outweighs these.
25[The End of Analysis on Response 1]
26
27[The Begin of Individual Scores]
28\boxed{1}
29[The End of Individual Scores]
30"""
31# when judging two responses
32msg = [
33 {"role": "user", "content": "What is 1+1?"},
34 {"role": "assistant", "content": "1+1=2"},
35 {"role": "user", "content": "What about 1+2?"},
36 {"role": "response_1", "content": "1+2=4"},
37 {"role": "response_2", "content": "1+2=3"}
38]
39
40completion = client.chat.completions.create(
41 model="nvidia/Llama-3_3-Nemotron-Super-49B-GenRM-Multilingual",
42 messages=msg,
43 temperature=0.0,
44 top_p=1.0,
45 max_tokens=32768,
46 stream=False
47)
48output = completion.choices[0].message.content
49print(output.split("</think>")[-1].strip())
50"""
51[The Begin of Analysis on Response 1]
52Response 1 states "1+2=4", which is mathematically incorrect. The correct answer is 3. While the response is clear and concise, its incorrectness makes it completely unhelpful. It fails in Correctness/Completeness, Instruction following, and Relevance due to the error. There is no redeeming value as it provides false information.
53[The End of Analysis on Response 1]
54
55[The Begin of Analysis on Response 2]
56Response 2 states "1+2=3", which is accurate and directly addresses the user's query. It is clear, concise, and fully aligned with the request. There is no unnecessary information, and it demonstrates perfect correctness without hallucination. This response meets all criteria for helpfulness.
57[The End of Analysis on Response 2]
58
59[The Begin of Individual Scores]
60\boxed{1, 5}
61[The End of Individual Scores]
62
63[The Begin of Ranking Score]
64\boxed{5}
65[The End of Ranking Score]
66"""1@misc{wang2025helpsteer3preferenceopenhumanannotatedpreference,
2 title={Help{S}teer3-{P}reference: Open Human-Annotated Preference Data across Diverse Tasks and Languages},
3 author={Zhilin Wang and Jiaqi Zeng and Olivier Delalleau and Hoo-Chang Shin and Felipe Soares and Alexander Bukharin and Ellie Evans and Yi Dong and Oleksii Kuchaiev},
4 year={2025},
5 eprint={2505.11475},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2505.11475},
9}