# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("OrionLLM/GRM-Coder-14b")
model = AutoModelForCausalLM.from_pretrained("OrionLLM/GRM-Coder-14b")
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]:]))Quick Links
A powerful 14B coding model designed for competitive programming.
This is a coding model based on Qwen3-14B for competitive programming.
On LiveCodeBench v6 (08/01/2024 - 05/01/2025), we achieve a Pass@1 accuracy of 67.87%, up 7.08% from the baseline Pass@1 accuracy of 60.79% of Qwen3-14B.
We trained on 24k verifiable coding problems over the course of four days.
- Downloads last month
- 49

# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OrionLLM/GRM-Coder-14b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)