mario-rc/multi-domain-rm-skywork-llama-3.1-8b-it
Multi-Domain Reward Model Skywork Llama-3.1-8B-Instruct
This is a multi-domain reward model built from `Skywork/Skywork-Reward-V2-Llama-3.1-8B`. It combines 23 fine-grained regression objectives across coherence, commonsense, empathy, and multicultural response quality with a prompt-conditioned gating network that produces a single preference score.
The checkpoint was packaged with the custom RewardModelWithGating architecture used in the Multi-Domain Reward Model project. Its shared-prompt gate is computed once and reused for both responses in each preference pair.
Project repository: `Mario-RC/multi-domain-reward-model`.
Intended use
Use this model to score and compare assistant responses when the evaluation should account for multiple quality dimensions rather than a single generic helpfulness score. The primary use cases are reward modeling, preference ranking, reranking, and offline alignment evaluation for chat-style data.
Training data
The model was trained with data from the `multidomain_data_scoring` project:
Multi-Domain-Data-ScoringMulti-Domain-Data-Preference-Pairs-SharedGate
Evaluation
Results on the internal multi-domain test set:
Hugging Face Models
Usage
The repository includes custom Transformers code, so trust_remote_code=True is required. Compute the gate once from the prompt and reuse that tensor when scoring both complete candidates.
import torch
from transformers import AutoModel, AutoTokenizer
repo_id = "mario-rc/multi-domain-rm-skywork-llama-3.1-8b-it"
tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModel.from_pretrained(
repo_id,
dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
).eval()
prompt = [{"role": "user", "content": "How can I support a friend who feels excluded?"}]
chosen = prompt + [{
"role": "assistant",
"content": "Listen without judging, validate how they feel, and ask what support would help.",
}]
rejected = prompt + [{"role": "assistant", "content": "Tell them to ignore it."}]
prompt_inputs = tokenizer.apply_chat_template(
prompt,
tokenize=True,
add_generation_prompt=True,
return_tensors="pt",
return_dict=True,
).to(model.device)
chosen_inputs = tokenizer.apply_chat_template(
chosen,
tokenize=True,
add_generation_prompt=False,
return_tensors="pt",
return_dict=True,
).to(model.device)
rejected_inputs = tokenizer.apply_chat_template(
rejected,
tokenize=True,
add_generation_prompt=False,
return_tensors="pt",
return_dict=True,
).to(model.device)
with torch.inference_mode():
gate = model.compute_gating(
input_ids=prompt_inputs["input_ids"],
attention_mask=prompt_inputs["attention_mask"],
)
chosen_score = model(
input_ids=chosen_inputs["input_ids"],
attention_mask=chosen_inputs["attention_mask"],
gating_output_override=gate,
).score
rejected_score = model(
input_ids=rejected_inputs["input_ids"],
attention_mask=rejected_inputs["attention_mask"],
gating_output_override=gate,
).score
print({"chosen": chosen_score.item(), "rejected": rejected_score.item()})Pass the tokenizer's input_ids tensor and matching attention_mask to the model. Reuse the same prompt-derived gate for both candidates. Scores are intended for comparison within a prompt; they are not calibrated probabilities or universal utility values.
Limitations
This is a reward model, not a standalone chat assistant. Scores are intended for relative comparison and should be calibrated for each downstream use case. Performance can vary by language, topic, and distribution. The model inherits limitations and biases from its base model and training data and should not be used as the sole decision-maker in high-impact settings.
The internal test was examined during development, and a source audit identified some train–test prompt overlap. These results are not an independent confirmation of generalization.
Credits
This model is based on the ArmoRM/RLHFlow reward-modeling approach and adapts it to custom multi-domain attributes for coherence, commonsense, empathy, and multicultural response quality.
License
The project code is released under Apache-2.0. Use of this checkpoint is also subject to the license and usage conditions of the base model and training datasets.
