Views
No views yet
A distilled Qwen3.6-27B GGUF optimized for local agentic reasoning, tool use, and long-chain task execution.
Please ensuretemperature = 0.6andtop_p = 0.95when using this model.This model was trained and validated at these specific parameters. Both too high and too low temperatures cause problems:🔥 Too high (> 0.6) → Output becomes divergent as token probabilities flatten. This causes malformed tool calls, function name hallucinations, unstable parameter generation, and uncontrollable agent behavior.🧊 Too low (< 0.3) → The model almost always picks the highest-probability token. In tool-calling scenarios this manifests as: repeating the same failed tool call instead of trying alternatives, shortened thinking traces leading to insufficient reasoning depth, and reduced robustness to edge cases.This is an important recommendation based on extensive real-world testing. Please verify these parameters in your inference framework.
| Area | Score | vs Qwen3.6-27B q4_k_m |
|---|---|---|
| BenchLocal 6-pack 🏆 | 86.5 | +8.3 |
| GPQA-Diamond-198 🔬 | 83.84% | +10.14% |
| BugFind-15 🐛 | 80 | +20 |
| ToolCall-15 🔧 | 97 | +4 |
| InstructFollow-15 📋 | 94 | +17 |
| StructOutput-15 📊 | 88 | +11 |
| MMLU-500 (5-shot) 📚 | 91.80% | ~tied (+0.2%) |
| DataExtract-15 📄 | 81 | -2 |
🚀 Output speed:~60 tok/son A100 40GB ·~100 tok/son RTX PRO 6000 (q4_k_m + mtp=3)
Qwen3.6-27B has solid foundational capabilities, but its agent behavior falls short — prone to infinite loops when thinking, lacks structured agent design, and has room to improve in math reasoning.⚠️ Note: Side-by-side GLM5.2 comparisons were evaluated using Opus 4.8 as a judge. Opus-as-judge has inherent biases — results are indicative, not definitive.
Qwen3.6-27B doesn't lack capability — it lacks good agent behavior. That makes it worth iterating on.| Teacher Model | Capability Distilled |
|---|---|
| Claude Opus 🎯 | Systematic thinking, structured organization, concise reasoning |
| DeepSeek 🧭 | Stable agent behavior, tool orchestration, task closure |
| Math/Logic models ➗ | Mathematical reasoning, logical deduction |
| Pack | q4_k_m (ours) | Qwen/Qwen3.6-27B q4_k_m | Delta |
|---|---|---|---|
| BugFind-15 🐛 | 80 | 60 | +20 |
| ToolCall-15 🔧 | 97 | 93 | +4 |
| DataExtract-15 📄 | 81 | 83 | -2 |
| InstructFollow-15 📋 | 94 | 77 | +17 |
| ReasonMath-15 ➗ | 79 | 79 | 0 |
| StructOutput-15 📊 | 88 | 77 | +11 |
| Total 🏆 | 86.5 | 78.2 | +8.3 |
| Benchmark | Ours | Baseline | Notes |
|---|---|---|---|
| GPQA-Diamond-198 🔬 | 83.84% | 73.7% | +10.14%, all 198 graded locally |
| MMLU-500 (5-shot) 📚 | 91.80% | 91.6% | Approximately tied |
🧩 OpenCode + LM Studio
📐 Temperature: 0.6 · Top-p: 0.95
⚡ q4_k_m + mtp=31# Download the GGUF
2huggingface-cli download your-org/Opus-DeepSeek-Distilled-Q4M \
3 opus-deepseek-distilled-q4m-q4_k_m.gguf --local-dir ./models
4
5# Run with llama.cpp
6./llama-cli -m ./models/opus-deepseek-distilled-q4m-q4_k_m.gguf \
7 --temp 0.6 --top-p 0.95 \
8 -p "Your prompt here"temperature = 0.6, top_p = 0.95💡 Pro tip: For coding tasks, thetemp 0.6 / top_p 0.95combo delivers the best balance of creativity and correctness.
q4_k_m tested; q5_k_m may improve accuracy at higher VRAM cost1@misc{opus-deepseek-distilled-q4m,
2 title = {Opus-DeepSeek-Distilled-Q4M: A Distilled Agentic GGUF for Local Deployment},
3 author = {Yin, Brian and BenchLocal Contributors},
4 year = {2026},
5 url = {https://github.com/brianyin/BenchLocal}
6}It is because of this work that came before that we can continue pushing forward, arriving at today's more stable, more practical, and more complete agent — and helping us get closer to the era of local agent AI.