Add metadata and link to paper

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +15 -5
README.md CHANGED
@@ -1,6 +1,12 @@
 
 
 
 
 
 
1
  # OpenRubrics/RubricARROW-8B-Judge
2
 
3
- This is an 8B RubricARROW-Judge model, finetuned from [Qwen3/Qwen3-8B](https://huggingface.co/Qwen/Qwen3-8B)
4
 
5
  # Usage
6
 
@@ -13,7 +19,7 @@ model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto")
13
 
14
  To evaluate the model, please use the following format to build up message.
15
 
16
- Here `rubric_item` should be generated with a `RubricARROW-Rubric`
17
 
18
  ```Python
19
  JUDGE_PROMPT_TEMPLATE = """
@@ -44,7 +50,9 @@ Return a json object. For each rubric item i (starting from 1), keys must be exa
44
  Return just the json object. Do not include any other text in the response.
45
  """.strip()
46
 
47
- conversation = f"user: {instruction}\n\nassistant: {response}"
 
 
48
 
49
  user_text = (
50
  JUDGE_PROMPT_TEMPLATE
@@ -78,9 +86,11 @@ def group_score(rubric_outputs):
78
  for x in rubric_outputs)
79
  ```
80
 
 
 
81
  If you find our work helpful, please consider citing our paper:
82
 
83
- ```
84
  @misc{jiang2026rubric,
85
  title={RUBRIC-ARROW: Alternating Pointwise Rubric Reward Modeling for LLM Post-training in Non-verifiable Domains},
86
  author={Haoxiang Jiang and Zihan Dong and Tianci Liu and Wanying Wang and Ran Xu and Tony Yu and Linjun Zhang and Haoyu Wang},
@@ -90,4 +100,4 @@ If you find our work helpful, please consider citing our paper:
90
  primaryClass={cs.LG},
91
  url={https://arxiv.org/abs/2605.29156},
92
  }
93
- ```
 
1
+ ---
2
+ base_model: Qwen/Qwen3-8B
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
  # OpenRubrics/RubricARROW-8B-Judge
8
 
9
+ This is an 8B RubricARROW-Judge model, finetuned from [Qwen/Qwen3-8B](https://huggingface.co/Qwen/Qwen3-8B) as introduced in the paper [RUBRIC-ARROW: Alternating Pointwise Rubric Reward Modeling for LLM Post-training in Non-verifiable Domains](https://huggingface.co/papers/2605.29156).
10
 
11
  # Usage
12
 
 
19
 
20
  To evaluate the model, please use the following format to build up message.
21
 
22
+ Here `rubric_item` should be generated with a `RubricARROW-Rubric` model.
23
 
24
  ```Python
25
  JUDGE_PROMPT_TEMPLATE = """
 
50
  Return just the json object. Do not include any other text in the response.
51
  """.strip()
52
 
53
+ conversation = f"user: {instruction}
54
+
55
+ assistant: {response}"
56
 
57
  user_text = (
58
  JUDGE_PROMPT_TEMPLATE
 
86
  for x in rubric_outputs)
87
  ```
88
 
89
+ # Citation
90
+
91
  If you find our work helpful, please consider citing our paper:
92
 
93
+ ```bibtex
94
  @misc{jiang2026rubric,
95
  title={RUBRIC-ARROW: Alternating Pointwise Rubric Reward Modeling for LLM Post-training in Non-verifiable Domains},
96
  author={Haoxiang Jiang and Zihan Dong and Tianci Liu and Wanying Wang and Ran Xu and Tony Yu and Linjun Zhang and Haoyu Wang},
 
100
  primaryClass={cs.LG},
101
  url={https://arxiv.org/abs/2605.29156},
102
  }
103
+ ```