Views
No views yet
qwen3_5_moe: a hybrid GatedDeltaNet (linear-attention) + full-attention
Mixture-of-Experts with 256 routed experts (8 active) + a shared expert, plus a
vision tower and an MTP head).llm-compressor 0.12 (AWQModifier + QuantizationModifier) → compressed-tensors pack-quantizedWhy this source: the popularHauhauCS/Qwen3.6-35B-A3B-Uncensored-*repos ship only GGUF (no full-precision weights), which cannot be honestly AWQ-quantized. This checkpoint quantizes a genuine BF16 uncensored Qwen3.6-35B-A3B instead.
mlp.experts.{0..255}.{gate,up,down}_proj on all 40 layers — 30,720mlp.shared_expert.{gate,up,down}_proj on all 40 layers — 120self_attn.{q,k,v,o}_proj on the 10 full-attention layers — 40linear_attn (mamba) layers,
the MoE router (mlp.gate) and shared_expert_gate, the vision tower, the
MTP head, token embeddings, lm_head, and all norms.moe_calibration_context), so per-expert AWQ scales are
well-estimated despite sparse 8/256 routing.compressed-tensors
(pack-quantized) layout that vLLM consumes for qwen3_5_moe. Serve with vLLM:1from vllm import LLM, SamplingParams
2llm = LLM(model="sahilchachra/Qwen3.6-35B-A3B-uncensored-heretic-AWQ",
3 trust_remote_code=True, dtype="bfloat16")
4print(llm.generate(["Write a quicksort in Python."], SamplingParams(max_tokens=256))[0].outputs[0].text)Notes
- Text-only: the source repo nests its vision-tower weights under a non-standard key prefix (
model.language_model.visual.*instead ofmodel.visual.*), so the vision tower does not load functionally. This is a quantization of the language model; treat it as a text-generation model.- GatedDeltaNet kernels (
causal-conv1d/flash-linear-attention) fall back to a pure-PyTorch path where unavailable (e.g. ARM/Jetson) — correct, just slower.compressed-tensors == 0.17.1's eagerdecompress_modelmis-readsgroup_sizeforpack-quantizedcheckpoints; load via vLLM (its own loader) or a fixed compressed-tensors. The weights/scales on disk are standard and correct.