KAT-Coder V2.5 Dev 35B-A3B with a transplanted Multi-Token Prediction (MTP) head, based on the abliteration / "Philadelphia Class" variant of KAT-Coder V2.5 Dev.
This repository contains:
The merged Hugging Face-format checkpoint
A BF16 GGUF
A Q4_K_M GGUF
A transplanted single-layer MTP head for llama.cpp draft-mtp speculative decoding
The Philadelphia Class checkpoint is used as the target/base model, with the MTP tensors from Myric's KAT-Coder V2.5 Dev MTP head transplanted into it.
MTP modification
The source Philadelphia Class model has:
mtp_num_hidden_layers = 0
This merged checkpoint changes it to:
mtp_num_hidden_layers = 1
and adds the 19 MTP tensors from the MTP-head checkpoint.
The resulting Hugging Face weight layout is:
File
Tensor count
model.safetensors
693
model-00014-of-mtp.safetensors
19
Total
712
GGUF files
KAT-Philly-MTP-BF16.gguf
KAT-Philly-MTP-Q4_K_M.gguf
The GGUF conversion exposes the transplanted MTP layer as the additional blk.40 / nextn tensors expected by llama.cpp.
llama.cpp usage
A recent llama.cpp build with Qwen3.5 MoE MTP support is required.