KAT-Coder V2.5 Dev 35B-A3B - ABLITERATED UNCENSORED PHILADELPHIA CLASS
0 hard refusals across 842 internal test prompts, 0 hard refusals across a separate 126-prompt holdout, and 23/24 coherence checks passed.
These are internal evaluation results, not third-party benchmarks, and may not generalize to every prompt or use case.
PHILADELPHIA CLASS is a text-only 35B-total/3B-active MoE derivative of
Kwaipilot/KAT-Coder-V2.5-Dev. It is modified to reduce refusal behavior while retaining the upstream checkpoint format and coding-oriented architecture. The release includes the full BF16 checkpoint plus Q4_K_M, Q5_K_M, and Q8_0 GGUF options.
Standout results
| Evaluation | Result |
|---|
| 842-prompt refusal test | 0 hard refusals, 6 soft-prefaced responses, 99.29% usable |
| Separate 126-prompt holdout | 0 hard refusals, 5 soft-prefaced responses, 95.24% usable |
| 24-task coherence check | 23/24 passed |
Created with targeted post-training weight editing to reduce refusal behavior while preserving the parent model's coding capabilities.
Model details
- Direct parent: Kwaipilot/KAT-Coder-V2.5-Dev
- Architecture: Mixture of Experts, 35B total parameters and approximately 3B active parameters
- Precision: BF16 original; Q4_K_M, Q5_K_M, and Q8_0 GGUF quantizations
- Modality: text only
- Focus: coding and agentic coding workflows
- Weight format: one
model.safetensors file (unsharded); each GGUF quantization is also a single file
- License: Apache 2.0, inherited from the direct parent
The upstream open-weight release contains language-model weights only. It does not include a vision tower.
Transformers usage
The checkpoint was loaded and evaluated with Transformers 5.14.1 on an NVIDIA RTX PRO 6000 Blackwell Server Edition GPU.
1pip install "transformers[serving]==5.14.1" accelerate
2transformers serve KridgeDookie/KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS --port 8000
The server exposes an OpenAI-compatible API at http://localhost:8000/v1.
vLLM usage
KAT-Coder's open checkpoint is text-only, so --language-model-only is required to prevent the runtime from attempting to initialize unavailable vision weights.
1pip install "vllm>=0.19.0"
2vllm serve KridgeDookie/KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS \
3 --port 8000 \
4 --max-model-len 32768 \
5 --reasoning-parser qwen3 \
6 --language-model-only
The full BF16 checkpoint is roughly 65 GiB. Although only about 3B parameters are active for each token, the complete MoE checkpoint still needs to be loaded, so practical memory requirements are much higher than those of a dense 3B model. Longer context lengths require additional memory.
GGUF downloads
| File | Approximate size | Suggested use |
|---|
Q4_K_M-KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf | 21 GB | Best general size/quality balance |
Q5_K_M-KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf | 25 GB | More quality with moderate extra memory |
Q8_0-KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf | 37 GB | Highest-fidelity quantized option |
Download one quantization with the current Hugging Face CLI:
1hf download KridgeDookie/KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS \
2 --include "Q4_K_M-*.gguf" \
3 --local-dir .
Run it with llama.cpp:
1llama-cli \
2 -m ./Q4_K_M-KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf \
3 -ngl 99 \
4 -c 32768 \
5 --jinja
Or import the same file into Ollama:
1FROM ./Q4_K_M-KAT-Coder-V2.5-Dev-35B-A3B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf
2PARAMETER num_ctx 32768
Save that as Modelfile, then run ollama create kat-coder-philadelphia -f Modelfile.
Limitations
- Refusal reduction does not guarantee better coding ability, factual accuracy, judgment, or tool use.
- The reported results are based on internal evaluations and have not been independently audited.
- This release is text-only and cannot accept image or video inputs.
- The model can generate incorrect, insecure, or otherwise harmful output. Review generated code before using it.
Attribution
This model is derived from
Kwaipilot/KAT-Coder-V2.5-Dev, which in turn builds on the Qwen3.6-35B-A3B family. Please retain the upstream attribution and follow the Apache 2.0 license.