Views
No views yet
qwen3_5: dense hybrid GatedDeltaNet linear-attention + full-attention over 64 text layers in a 3:1 pattern, plus a vision tower and an MTP head; multimodal image-text-to-text). It matches Qwen3.6-27B answer quality while emitting ~50% fewer thinking tokens on average.llm-compressor (AWQModifier + QuantizationModifier) -> compressed-tensors pack-quantizedThis is a quantized derivative. Weights, behavior, and license follow the base model — see the original card for full details, benchmarks, and citation.
self_attn.{q,k,v,o}_projmlp.{gate,up,down}_proj (all text layers)linear_attn (mamba) layers, vision tower (model.visual.*, 27 blocks), MTP head, token embeddings, lm_head, all norms (incl. q_norm / k_norm).self_attn.{q,k,v,o} projections and the per-layer mlp.{gate,up,down} projections are quantized to 4-bit; the Mamba linear_attn layers are deliberately kept in BF16 (along with the vision tower, MTP head, embeddings, lm_head and norms), because they are quantization-sensitive and keeping them full-precision preserves the reasoning quality and the concise <think> behavior.openai/gsm8k, config main, train split) — the model's headline in-domain reasoning dataset — rendered through the model's own chat template with the <think>…</think> reasoning format, so calibration matches the model's real (thinking) inference distribution. NVFP4 is data-free (no calibration).<|im_start|>role … <|im_end|>) with a <think>…</think> reasoning trace, thinking enabled by default. Apply it via tokenizer.apply_chat_template(messages, add_generation_prompt=True) (or the processor for image inputs); do not hand-format prompts. See the base Qwen/Qwen3.6-27B for full usage details.temperature=1.0, top_p=0.95, top_k=20, min_p=0.0 with thinking on (the base model's recommended sampling, per the original card).1from vllm import LLM, SamplingParams
2
3# This is a multimodal checkpoint: the vision tower is kept in BF16
4# (only the text / MoE weights are 4-bit). vLLM builds the full model.
5llm = LLM(
6 model="sahilchachra/ThinkingCap-Qwen3.6-27B-AWQ",
7 trust_remote_code=True,
8)
9out = llm.chat(
10 [{"role": "user", "content": "Hello!"}],
11 SamplingParams(temperature=0.6, top_p=0.95, max_tokens=512),
12)
13print(out[0].outputs[0].text)1vllm serve sahilchachra/ThinkingCap-Qwen3.6-27B-AWQ \
2 --trust-remote-code \
3 --max-model-len 262144 --reasoning-parser qwen3