Views
No views yet
⚠️ Requires llama.cpp with Mellum architecture support. This is not yet in mainline llama.cpp — use PR #23966 or a build that includes it.
| Property | Value |
|---|---|
| Base model | JetBrains/Mellum2-12B-A2.5B-Thinking |
| Architecture | Mellum (MoE) |
| Total parameters | 12B |
| Active parameters | 2.5B |
| Experts | 64 (8 per token) |
| Context length | 128K (sliding window) |
| Quantization | Q4_K_M |
| File size | ~7.5 GB |
1llama-server \
2 -m Mellum2-12B-A2.5B-Thinking-Q4_K_M.gguf \
3 -c 32000 \
4 -ngl 99 \
5 --jinja \
6 --flash-attn on \
7 --cache-type-k q4_0 \
8 --cache-type-v q4_0 \
9 --port 18081reasoning_budget to cap reasoning tokens:1curl http://localhost:18081/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{"model":"Mellum2-12B-A2.5B-Thinking-Q4_K_M","messages":[{"role":"user","content":"Explain quicksort"}],"max_tokens":500,"reasoning_budget":512}'1llama-server \
2 -m Mellum2-12B-A2.5B-Thinking-Q4_K_M.gguf \
3 -c 32000 \
4 -ngl 99 \
5 -ncmoe 20 \
6 -t 8 \
7 --jinja \
8 --flash-attn on \
9 --cache-type-k q4_0 \
10 --cache-type-v q4_0