Views
No views yet
[!IMPORTANT]
All benchmark scores reported in the KAT‑Coder‑V2.5 technical paper refer to the full BF16 model.
This int4 quantisation has not been re‑evaluated on standard benchmarks. It is expected to closely match the original quality, but individual results may vary.
| Property | Value |
|---|---|
| Base model | KAT‑Coder‑V2.5‑Dev (35 B total, 3 B active MoE) |
| Quantisation | int4 AutoRound (W4A16), group size 128 |
| MTP head | Added from Qwen3.6‑35B‑A3B (Apache 2.0) for speculative decoding |
| Calibration data | OpenCode Instruct (512 samples, sequence length 2048) |
| Quantisation tool | Spark Auto Round – an optimised fork of Intel® AutoRound |
| Deployment target | vLLM ≥ 0.19.0 with FlashInfer on GB10‑class hardware |
| Hugging Face Hub | slopops/KAT-Coder-V2.5-Dev-MTP-int4-AutoRound-SAR |
1docker run --rm --gpus all --net=host --ipc=host \
2 vllm/vllm-openai:latest \
3 vllm serve slopops/KAT-Coder-V2.5-Dev-MTP-int4-AutoRound-SAR \
4 --port 8001 \
5 --host 0.0.0.0 \
6 --max-model-len 262144 \
7 --gpu-memory-utilization 0.55 \
8 --max-num-batched-tokens 16384 \
9 --max-num-seqs 8 \
10 --attention-backend flashinfer \
11 --enable-prefix-caching \
12 --enable-chunked-prefill \
13 --speculative-config '{"method":"mtp","num_speculative_tokens":3}' \
14 --tool-call-parser qwen3_coder \
15 --reasoning-parser qwen3 \
16 --enable-auto-tool-choice \
17 --chat-template-kwargs '{"preserve_thinking":true}' \
18 --generation-config '{"temperature":0.6,"top_p":0.95,"top_k":-1,"min_p":0.0,"presence_penalty":0.0,"repetition_penalty":1.0}'[!NOTE]
The server will be available athttp://localhost:8001/v1.
| Flag | Purpose |
|---|---|
--attention-backend flashinfer | Fast attention kernel, recommended for GB10 |
--speculative-config | Activates MTP with 3 speculative tokens |
--enable-auto-tool-choice + --tool-call-parser | Required for agentic tool‑use |
--chat-template-kwargs '{"preserve_thinking":true}' | Keeps thinking traces from previous turns |
--generation-config | Safe defaults for deterministic outputs |
--speculative-config flag.[!WARNING]
Performance claims (throughput, token savings, error reduction) refer to the original BF16 model as reported in the technical paper, or to our internal tests on a GB10 system. They are not guaranteed for every deployment. Always validate with your own workload.
1@misc{katcoder_v25_2026,
2 title={{KAT-Coder-V2.5 Technical Report}},
3 author={{KwaiKAT Team}},
4 year={2026},
5 month={July},
6 eprint={2607.05471},
7 archivePrefix={arXiv},
8 primaryClass={cs.AI},
9 url={https://arxiv.org/pdf/2607.05471}
10}