Views
No views yet
JetBrains/Mellum2-12B-A2.5B-Thinking, ready to run with
llama.cpp, Ollama, LM Studio, and
other GGUF-compatible runtimes.| File | Size |
|---|---|
Mellum2-12B-A2.5B-Thinking-BF16.gguf | 24.3 GB |
<think>...</think> blocks before the final answer. For the full model
description, evaluation results, and architecture details, see the original
model card: JetBrains/Mellum2-12B-A2.5B-Thinking.| Quantization | Description | Size | KLD vs BF16 ↓ | Top-token match ↑ |
|---|---|---|---|---|
BF16 (this repo) | 16-bit, no quantization (reference) | 24.3 GB | — | — |
Q8_0 | 8-bit, effectively lossless | 12.9 GB | 0.004 | 97.4% |
Q6_K | 6-bit k-quant, very high quality | 10.9 GB | 0.014 | 95.1% |
Q4_K_M | 4-bit k-quant, balanced (recommended) | 8.1 GB | 0.052 | 89.8% |
MXFP4_MOE | MXFP4 4-bit on MoE experts, smallest | 7.0 GB | 0.088 | 87.3% |
n_ctx=512); lower KLD / higher agreement means closer to the
unquantized model.hf download JetBrains/Mellum2-12B-A2.5B-Thinking-GGUF-BF16 Mellum2-12B-A2.5B-Thinking-BF16.gguf --local-dir .1# Pull and serve in one step (downloads the GGUF automatically)
2llama-server -hf JetBrains/Mellum2-12B-A2.5B-Thinking-GGUF-BF16 \
3 --ctx-size 131072 \
4 --temp 0.6 --top-p 0.95 --top-k 20
5
6# Or run a one-off prompt with a local file
7llama-cli -m Mellum2-12B-A2.5B-Thinking-BF16.gguf \
8 --ctx-size 131072 \
9 --temp 0.6 --top-p 0.95 --top-k 20 \
10 -p "Is 1024 a power of 2? Explain your reasoning."http://localhost:8080/v1:1from openai import OpenAI
2
3client = OpenAI(base_url="http://localhost:8080/v1", api_key="llama.cpp")
4
5chat_response = client.chat.completions.create(
6 model="JetBrains/Mellum2-12B-A2.5B-Thinking-GGUF-BF16",
7 messages=[
8 {"role": "user", "content": "Is 1024 a power of 2? Explain your reasoning."},
9 ],
10 max_tokens=81920,
11 temperature=0.6,
12 top_p=0.95,
13 extra_body={"top_k": 20},
14)
15print(chat_response.choices[0].message.content)ollama run hf.co/JetBrains/Mellum2-12B-A2.5B-Thinking-GGUF-BF16