Views
No views yet
| Parameter | Value |
|---|---|
| Library | GPTQModel v6.0.3 |
| Bits / Group size | 4 / 128 |
| Sym / Desc-act / True-seq / Damp | true / false / true / 0.01 |
| Calibration | 256 samples × 2048 tok from allenai/c4 |
lm_head, embed_tokens, .*attn.* (Gated
DeltaNet + Gated Attention), .*mtp.*, .*shared_expert.*, .*visual.*.--quantization moe_wna16 (NOT --quantization gptq — that kernel
rejects the BF16 attention this recipe keeps).1python -m sglang.launch_server \
2 --model-path raydelossantos/Qwen3.6-27B-GPTQ-Int4 \
3 --quantization moe_wna16 --tp 4 --kv-cache-dtype fp8_e5m2 \
4 --tool-call-parser qwen3_coder --reasoning-parser qwen3 \
5 --trust-remote-code1SGLANG_ENABLE_SPEC_V2=1 python -m sglang.launch_server \
2 --model-path raydelossantos/Qwen3.6-27B-GPTQ-Int4 \
3 --quantization moe_wna16 --tp 4 --mem-fraction-static 0.75 \
4 --speculative-algo NEXTN --speculative-num-steps 3 \
5 --speculative-eagle-topk 1 --speculative-num-draft-tokens 4 \
6 --mamba-scheduler-strategy extra_buffer \
7 --kv-cache-dtype fp8_e5m2 \
8 --tool-call-parser qwen3_coder --reasoning-parser qwen3 \
9 --trust-remote-code