Views
No views yet
aifeifei798/Qwen3.8-Queen-27B.W4A16_ASYM — 4-bit asymmetric per-group quantization (group size 128) of all Linear weights, stored in the compressed-tensors pack-quantized format (weight_packed / weight_scale / weight_zero_point / weight_shape), which LMDeploy turbomind auto-detects and loads natively (including the MTP heads and vision tower, which stay BF16).compressed_tensors.offload.load_offloaded_model), so the full-precision source fits on a 2×16 GB VRAM setup.AWQModifier with the layer-scoped hybrid-attention mappings from build_hybrid_attention_mappings — full-attention input_layernorm → self_attn.q/k/v, post_attention_layernorm → mlp.gate/up, and mlp.up_proj → mlp.down_proj, with duo_scaling="both" and CPU offload, followed by W4A16 quantization. This layer-scoped recipe is required for hybrid-attention (Qwen3.5-family) architectures — grouped-regex smoothing or mismatched mappings corrupt decoding.lm_head, norms, linear_attn.in_proj_a/b, the vision tower, and MTP heads.turbomind:1from lmdeploy import pipeline, TurbomindEngineConfig
2
3pipe = pipeline(
4 "TheUnderscore/Qwen3.8-Queen-27B-W4A16-AWQ",
5 backend_config=TurbomindEngineConfig(
6 tp=2,
7 model_format="compressed-tensors",
8 language_model_only=True,
9 cpu_realtime_conversion=True,
10 ),
11)
12print(pipe("Hello, who are you?").text)quantize-awq-hybrid.py — the script used to produce this quantization (CPU-offloaded, DDP/torchrun, produces properly numbered -of-N shards). --offload_dir selects where per-rank CPU offload temp folders live (defaults to the current working directory).model-nonquant.safetensors — unquantized tensors (mtp.* and model.visual.*) preserved BF16 so the full model architecture is loadable.