Views
No views yet
qwen3_5_moe: hybrid GatedDeltaNet linear-attention + full-attention over 40 layers, 256 routed experts + a shared expert with 8 active per token; base Qwen3.6-35B-A3B, SFT+RL post-training). Supports a <think> reasoning/thinking mode (on by default) and tool use. (The arch config declares a vision tower, but this checkpoint ships language-model weights only.)llm-compressor model_free_ptq (data-free, RTN) -> compressed-tensorsThis is a quantized derivative. Weights, behavior, and license follow the base model — see the original card for full details, benchmarks, and citation.
mlp.experts.*.{gate,up,down}_proj (all layers){gate,up,down}_projself_attn.{q,k,v,o}_projlinear_attn (mamba) layers, MoE router mlp.gate + shared_expert_gate, token embeddings, lm_head, all norms (incl. q_norm / k_norm).model_free_ptq, round-to-nearest); no calibration data. Weights are quantized by streaming the safetensors from disk.<|im_start|>role … <|im_end|>) with a <think>…</think> reasoning trace (thinking mode on by default; disable with enable_thinking=False). Apply it via tokenizer.apply_chat_template(messages, add_generation_prompt=True); supports tool-calling.temperature=1.0, top_p=0.95, top_k=20 for general/coding tasks (the card also suggests temperature=0.7, top_p=0.8 for instruction mode and presence_penalty=1.5).1from vllm import LLM, SamplingParams
2
3# NOTE: --language-model-only equivalent. This arch carries a vision config
4# but the checkpoint has no vision weights, so vLLM skips the vision tower.
5llm = LLM(
6 model="sahilchachra/KAT-Coder-V2.5-Dev-W4A16",
7 trust_remote_code=True,
8 hf_overrides={"language_model_only": True},
9)
10out = llm.chat(
11 [{"role": "user", "content": "Hello!"}],
12 SamplingParams(temperature=0.6, top_p=0.95, max_tokens=512),
13)
14print(out[0].outputs[0].text)1vllm serve sahilchachra/KAT-Coder-V2.5-Dev-W4A16 \
2 --language-model-only --trust-remote-code \
3 --max-model-len 262144 --reasoning-parser qwen3