Views
No views yet
About this repository: this is the 4-bit (W4A16) version of nightmedia/Qwen3.6-27B-Architect-Polaris2-Fable-B-F451-F32 (Qwen3.6 27B multimodal, hybrid architecture with GatedDeltaNet linear attention + full attention). It is an AutoRound quantization ready for production serving on vLLM: the language model runs in INT4 (Marlin kernel), while the vision tower and the MTP (Multi-Token Prediction, used for speculative decoding) were fully preserved in BF16 — meaning this checkpoint accepts image/video inputs and speculative decoding with no functional loss compared to the original model. Size: ~19.5 GB (vs ~108 GB for the original FP32).
| Component | Precision |
|---|---|
Language model — 400 Linear layers (attn, MLP, GDN projections) | INT4 W4A16 g128 |
Vision tower (model.visual.*, 333 tensors) | BF16 (bit-identical to the original) |
MTP (mtp.*, 15 tensors — speculative decoding) | BF16 (bit-identical to the original) |
linear_attn.in_proj_a/b (out_dim 48 < group 128), norms, conv1d, embeddings, lm_head | BF16 |
neuralmagic/LLM_compression_calibration (128 samples, messages + the model's own chat template)1vllm serve DoktorMincs/Qwen3.6-27B-Architect-Polaris2-Fable-B-F451-W4A16-AutoRound \
2 --tensor-parallel-size 2 --max-model-len 65536 \
3 --speculative-config '{"method":"mtp","num_speculative_tokens":1}'Qwen3_5MTP draft is loaded from this same checkpoint.Note: this configuration was tested with 4× RTX 3060 12 GB (48 GB total VRAM).
1export CUDA_DEVICE_ORDER=PCI_BUS_ID
2export OMP_NUM_THREADS=4
3export CUDA_VISIBLE_DEVICES=0,1,2,3
4export PYTORCH_ALLOC_CONF=expandable_segments:True
5export NCCL_P2P_DISABLE=1
6export FLASHINFER_DISABLE_VERSION_CHECK=1
7
8exec vllm serve \
9 /root/models/DoktorMincs/Qwen3.6-27B-Architect-Polaris2-Fable-B-F451-W4A16-AutoRound \
10 --served-model-name "qwen3.6-27b" \
11 --tensor-parallel-size 4 \
12 --max-model-len 163840 \
13 --override-generation-config '{"temperature": 0.6, "top_p": 0.95, "top_k": 20, "min_p": 0.0, "presence_penalty": 0.0, "repetition_penalty": 1.0}' \
14 --tool-call-parser qwen3_coder \
15 --reasoning-parser qwen3 \
16 --enable-auto-tool-choice \
17 --trust-remote-code \
18 --enable-prefix-caching \
19 --max-num-batched-tokens 8192 \
20 --gpu-memory-utilization 0.88 \
21 --disable-custom-all-reduce \
22 --max-num-seqs 16 \
23 --host 0.0.0.0 \
24 --port 3434 \
25 --speculative-config '{"method": "mtp", "num_speculative_tokens": 1}'Qwen3_5MTP resolved, embeddings shared with target) ✓