263 Downloads Updated 9 months ago
ollama run richardyoung/kat-dev-72b:iq3_m
Updated 9 months ago
9 months ago
a5f9924a1237 · 36GB ·
A 72B-parameter coding model built for agentic software engineering, issue resolution, multi-file refactors, and tool-driven development, quantized to GGUF for local use with Ollama.
KAT-Dev-72B is a GGUF quantization of Kwaipilot/KAT-Dev-72B-Exp, the experimental, large-scale reinforcement-learning version of Kwaipilot’s KAT-Coder model. It is purpose-built for software engineering and agentic coding workflows: reading and editing real repositories, resolving GitHub-style issues, and operating inside tool-use scaffolds.
The model is based on the Qwen2 architecture (Qwen2.5-72B-class: 80 layers, 8192 hidden size, 152064 vocab) and supports a 128K-token context window, making it well suited to working across large codebases and long agent trajectories. Multiple quantizations are provided so you can trade quality for memory on everything from a single 24 GB GPU to a multi-GPU or high-RAM workstation.
| Benchmark | Score | Notes |
|---|---|---|
| SWE-Bench Verified | 74.6% | Reported by Kwaipilot for KAT-Dev-72B-Exp, evaluated strictly with the SWE-agent scaffold (source) |
Note: The 74.6% figure is the authors’ result for the full-precision base model under the SWE-agent harness. Scores for quantized GGUF builds and other scaffolds will differ. Treat it as an upstream reference point, not a guarantee for every quant or setup.
| Tag | Size | BPW | Notes |
|---|---|---|---|
kat-dev-72b:q8_0 |
77 GB | 8.5 | Near-lossless; highest quality, needs the most memory |
kat-dev-72b:q6_k |
64 GB | 6.6 | Excellent quality; recommended high-fidelity build |
kat-dev-72b:iq4_xs |
40 GB | 4.25 | Strong quality/size balance; good default for most users |
kat-dev-72b:iq3_m |
36 GB | 3.66 | Smaller footprint with usable quality |
kat-dev-72b:iq2_m |
29 GB | 2.7 | Aggressive compression; fits tighter memory budgets |
kat-dev-72b:iq2_xxs |
25 GB | 2.06 | Smallest build; maximum compression, lowest fidelity |
All versions use a 128K-token context window. Sizes are from the live Ollama tags page.
Pull and run the recommended balanced build:
ollama run richardyoung/kat-dev-72b:iq4_xs
Pull a specific quantization:
# Highest quality
ollama run richardyoung/kat-dev-72b:q6_k
# Smallest footprint
ollama run richardyoung/kat-dev-72b:iq2_xxs
Use it from the API:
curl http://localhost:11434/api/generate -d '{
"model": "richardyoung/kat-dev-72b:iq4_xs",
"prompt": "Write a Python function that merges two sorted lists.",
"options": { "temperature": 0.6 }
}'
Tip: The upstream model uses temperature 0.6 for agentic evaluation. Start there for coding and agent tasks.
Approximate memory needed to load the weights (plus headroom for the KV cache, which grows with context length):
| Tag | Size | Suggested memory (VRAM/RAM) |
|---|---|---|
iq2_xxs |
25 GB | ~32 GB |
iq2_m |
29 GB | ~36 GB |
iq3_m |
36 GB | ~44 GB |
iq4_xs |
40 GB | ~48 GB |
q6_k |
64 GB | ~72 GB |
q8_0 |
77 GB | ~88 GB |
Qwen2ForCausalLM), Qwen2.5-72B-classmax_position_embeddings = 131072)This is a community GGUF quantization of an experimental research model. Quantization reduces precision and can lower output quality relative to the full-precision base; smaller builds (IQ2/IQ3) trade more quality for size. Benchmark figures are upstream results for the base model under a specific scaffold and may not reproduce for quantized builds or different harnesses. Always review and test generated code before using it in production. The model and its outputs are provided “as is,” without warranty.
Built & maintained by Richard Young · DeepNeuro