Views
No views yet
| Property | Value |
|---|---|
| Base Model | wangzhang/Qwen3.5-122B-A10B-abliterated |
| Architecture | Qwen3.5 MoE (256 routed experts, 10B active) |
| Quantization | AWQ INT4 (W4A16, symmetric, group_size=128) |
| Quantization Tool | llm-compressor 0.10.1.dev (main branch) |
| Quantization Format | compressed-tensors, pack-quantized |
| Original Size | 228 GB (BF16) |
| Quantized Size | 66 GB (71% reduction) |
| Format | safetensors (2 shards) |
| Calibration | WikiText-103, 8 samples, seq_len=256 |
| Component | Format | Notes |
|---|---|---|
| Routed experts (gate/up/down_proj) | INT4 packed | 256 experts x 48 layers x 3 projections = 36,864 quantized tensors |
| Self-attention (q/k/v/o_proj) | INT4 packed | 12 full-attention layers |
| Shared experts | BF16 | Kept at full precision for quality |
| Linear attention | BF16 | Kept at full precision (36 layers) |
| Embeddings, norms, gates | BF16 | Kept at full precision |
e48353f8) with AWQModifier:CalibrationQwen3_5MoeSparseMoeBlock unfuses the 3D fused expert parameters (Qwen3_5MoeExperts) into individual nn.Linear modules, enabling standard AWQ quantizationImportant: This model usescompressed-tensorsformat withWNA16(Weight N-bit Activation 16-bit) quantization. The required inference kernels have specific GPU architecture requirements.
| GPU Architecture | Compute Capability | Compatible? | Notes |
|---|---|---|---|
| NVIDIA Hopper (H100, H200) | SM90 | Yes | CutlassW4A8 + MacheteLinearKernel |
| NVIDIA Ada (L40S, RTX 4090) | SM89 | Yes | Marlin kernel |
| NVIDIA Blackwell (B200) | SM100 | Yes | Full support |
| NVIDIA DGX Spark (GB10) | SM121 | No | WNA16 kernels require SM90+ |
| NVIDIA Ampere (A100) | SM80 | Untested | May work with Marlin fallback |
1vllm serve bjk110/Qwen3.5-122B-A10B-abliterated-AWQ \
2 --served-model-name Qwen3.5-122B-A10B-abliterated-AWQ \
3 --quantization compressed-tensors \
4 --max-model-len 32768 \
5 --trust-remote-code \
6 --enable-chunked-prefill \
7 --reasoning-parser qwen3vllm_patches/ directory.