Views
No views yet
[!Note] Use this model when you want direct, low-latency answers without an explicit chain of thought — interactive chat, code assistance, tool use, and instruction following. If you need explicit reasoning before the answer (complex debugging, planning, multi-step agentic flows), use Thinking instead.
Mellum2-12B-A2.5B-Base by supervised fine-tuning followed by reinforcement learning with verifiable rewards (RLVR) on math, executable coding, tool use, instruction following, reasoning, and knowledge tasks. Mellum2 Instruct answers directly, without an externalized chain of thought.| Checkpoint | Description |
|---|---|
| Base Pretrain | Base checkpoint before long-context extension |
| Base | Final base model |
| Instruct SFT | Supervised instruction-tuned checkpoint |
| Thinking SFT | Supervised thinking checkpoint |
| Instruct | RL-tuned instruction model |
| Thinking | RL-tuned thinking model |
1# Without tool calling
2vllm serve JetBrains/Mellum2-12B-A2.5B-Instruct --max-model-len 131072
3
4# With tool calling
5vllm serve JetBrains/Mellum2-12B-A2.5B-Instruct \
6 --max-model-len 131072 \
7 --enable-auto-tool-choice \
8 --tool-call-parser hermes1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [
6 {"role": "user", "content": "Write a Python function to reverse a string."},
7]
8
9chat_response = client.chat.completions.create(
10 model="JetBrains/Mellum2-12B-A2.5B-Instruct",
11 messages=messages,
12 max_tokens=81920,
13 temperature=0.6,
14 top_p=0.95,
15 extra_body={
16 "top_k": 20,
17 },
18)
19print("Chat response:", chat_response)| Benchmark | Mellum2 Instruct SFT | Mellum2 Instruct | Qwen3.5 (4B) | Qwen3.5 (9B) | OLMo-3 (7B) | Ministral 3 (14B) | Seed-Coder (8B) |
|---|---|---|---|---|---|---|---|
| Coding | |||||||
| LiveCodeBench v6 | 30.9 | 37.2 | 51.0 | 63.7 | 28.2 | 42.4 | 28.1 |
| EvalPlus | 76.2 | 78.4 | 69.4 | 71.8 | 67.3 | 74.1 | 73.8 |
| MultiPL-E | 64.6 | 67.1 | 51.0 | 67.1 | 36.1 | 71.5 | 77.0 |
| Tool Use | |||||||
| BFCL v4 | 31.8 | 44.2 | 52.0 | 60.6 | 19.8 | 38.8 | — |
| BFCL v3 | 43.1 | 66.3 | 64.1 | 70.5 | 41.9 | 52.7 | — |
| Math | |||||||
| AIME | 29.9 | 41.7 | 38.3 | 58.3 | 40.0 | 33.3 | 0.0 |
| GSM-Plus | 73.0 | 80.5 | 85.2 | 87.9 | 85.8 | 86.6 | 50.4 |
| Knowledge | |||||||
| MMLU-Redux | 77.4 | 78.1 | 87.5 | 91.1 | 71.8 | 85.9 | 38.1 |
| GPQA Diamond | 38.9 | 40.9 | 76.8 | 79.8 | 40.9 | 58.6 | 20.2 |
| Conversational | |||||||
| IFEval | 69.3 | 75.8 | 82.1 | 83.9 | 83.2 | 67.3 | 56.2 |
| JetBrains pairwise | 66.7 | 68.1 | 60.6 | 77.8 | 44.4 | 72.4 | 43.0 |
| MixEval | 62.9 | 62.2 | 65.9 | 71.1 | 59.4 | 71.2 | 37.2 |
| BS-Bench | 24.0 | 18.0 | 56.9 | 61.0 | 22.0 | 9.0 | 5.0 |
| Safety | |||||||
| HarmBench (↓) | 8.4 | 23.1 | 20.3 | 20.9 | 14.7 | 56.5 | 40.0 |
| XSTest | 78.3 | 81.2 | 93.2 | 91.2 | 91.2 | 96.8 | 86.3 |
Qwen2.5-7B-Instruct on an internal benchmark.— indicates the model lacks native tool calling.