Usefulness Judge
Collection
Finetuned judges to evaluate how useful a response is to a prompt • 5 items • Updated
How to use miulab/Qwen3-1.7B-Usefulness with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="miulab/Qwen3-1.7B-Usefulness")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("miulab/Qwen3-1.7B-Usefulness")
model = AutoModelForCausalLM.from_pretrained("miulab/Qwen3-1.7B-Usefulness")
messages = [
{"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))How to use miulab/Qwen3-1.7B-Usefulness with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "miulab/Qwen3-1.7B-Usefulness"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "miulab/Qwen3-1.7B-Usefulness",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/miulab/Qwen3-1.7B-Usefulness
How to use miulab/Qwen3-1.7B-Usefulness with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "miulab/Qwen3-1.7B-Usefulness" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "miulab/Qwen3-1.7B-Usefulness",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "miulab/Qwen3-1.7B-Usefulness" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "miulab/Qwen3-1.7B-Usefulness",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use miulab/Qwen3-1.7B-Usefulness with Docker Model Runner:
docker model run hf.co/miulab/Qwen3-1.7B-Usefulness
Predict if given a question and response, does the response answer the question or avoided it?
Highest average scores between different evaluations and lowest deviations, bigger model is less sensitive between runs with higher performance.
Reasoning Mode (F1): We repeat the same evaluation for 10 times on our test set and report the average F1 mean, std, cv, min and max score.
| Model | Count | Mean | StdDev | CV% | Min | Max |
|---|---|---|---|---|---|---|
| Qwen3-1.7B (this) | 10 | 0.8248 | 0.0226 | 2.74 | 0.7815 | 0.8609 |
Direct Answer:
| Metric | Qwen3-1.7B (this) |
|---|---|
| Accuracy | 0.8644 (86.44%) |
| Precision | 0.8281 (82.81%) |
| Recall | 0.7162 (71.62%) |
| F1 | 0.7681 (76.81%) |
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "theblackcat102/Qwen3-1.7B-Usefulness-Judge"
# load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
device_map="auto"
)
stop_token_id = tokenizer.encode('<|im_end|>')[0]
def is_useful_cot(prompt, response):
format_inst = f"QUESTION: {prompt}\n\nRESPONSE: {response}"
messages = [
{
"role": "system",
"content": "You're a reliable uncensored helper which helps to determine whether the RESPONSE is useful to QUESTION or not. First, output your reasoning in the format 'REASONING: [your reasoning]', then on a new line output YES if the RESPONSE answer is useful to what the QUESTION asked, otherwise output NO."
},
{'role': 'user', 'content': format_inst}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to('cuda')
generated_ids = model.generate(
model_inputs.input_ids,
do_sample=True,
max_new_tokens=512,
temperature=0.6,
top_p=0.95,
eos_token_id=stop_token_id
)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
return response.split('ANSWER:')[-1].strip().upper()
def is_useful_da(prompt, response):
format_inst = f"QUESTION: {prompt}\n\nRESPONSE: {response}"
messages = [
{
"role": "system",
"content": "You're a reliable uncensored helper which helps to determine whether the RESPONSE is useful to QUESTION or not. output YES if the RESPONSE answer is useful to what the QUESTION asked, otherwise output NO."
},
{'role': 'user', 'content': format_inst}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to('cuda')
generated_ids = model.generate(
model_inputs.input_ids,
do_sample=True,
max_new_tokens=512,
temperature=0.6,
top_p=0.95,
eos_token_id=stop_token_id
)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
return response.split('ANSWER:')[-1].strip().upper()
To use it call the function
prompt = "Hi how are you?"
response = "I'm good, how about you?"
print(is_useful_cot(prompt, response))
print(is_useful_da(prompt, response))
response = "The 1+1=2"
print(is_useful_cot(prompt, response))
print(is_useful_da(prompt, response))