1
stars
7
commits
2
linked in READMEs
May 2, 2026
updated
This is a TEXT-ONLY model despite the "VL" in the name. Vision is structurally
broken at the REAP pruning source — the safetensors has 0 vision tensors. If you
need real vision, use mattbucci/Qwen3.6-35B-A3B-AWQ
(unpruned, full vision tower) or mattbucci/Qwen3.6-27B-AWQ
(dense, full vision tower).
Self-calibrated AWQ INT4 quantization of atbender/Qwen3.6-VL-REAP-26B-A3B,
the Cerebras-style REAP-pruned 26B-effective variant of Qwen/Qwen3.6-35B-A3B.
Calibrated 2026-05-02 using balanced_thinking_vision (512 samples × 2K, 33h GPTQ
on CPU) under SGLang v0.5.10 + RDNA4 patches on 2x AMD R9700 (gfx1201).
Qwen3_5MoeForConditionalGeneration (MoE + DeltaNet hybrid)moe_wna16 runtime kernel)| Capability | RDNA4 (R9700) | Ampere (3090) | Status |
|---|---|---|---|
| Basic Q&A | ✅ PASS | ✅ PASS | Both stacks clean |
| Thinking chain | ✅ PASS (977 tok, finish=stop) | ✅ PASS (1266 tok, finish=stop) | Both stacks clean |
| Vision | ❌ HSAIL crash | ❌ Hallucinates | Structurally broken on both — see below |
REAP pruning produced a checkpoint where the vision tower was fully removed.
Independently confirmed via safetensors.safe_open(model.safetensors) on both
stacks: 0 of 70233 tensors have vision or visual in the name.
The model card on the base repo claims "VL" capability, but the actual safetensors have no vision encoder weights. When asked to describe an image:
Same root cause on both stacks (REAP-stripped vision tower); different failure surfaces. Debugging the RDNA4 HSAIL won't recover vision since the inputs are garbage on both sides — only a re-prune that retains the vision tower would fix it.
# SGLang on RDNA4 (R9700) or Ampere (3090) — text-only paths
sglang.launch_server \
--model-path mattbucci/Qwen3.6-VL-REAP-26B-A3B-AWQ \
--quantization moe_wna16 \
--tp 2 \
--context-length 131072 \
--disable-cuda-graph
For vision workloads, switch to the unpruned variant
mattbucci/Qwen3.6-35B-A3B-AWQ.
balanced_thinking_vision (preserves thinking chains + image data when the base
has a vision tower; this base did not retain one, hence the limitation):
data_files="llava_instruct_150k.json" pinning)Ignore list (preserved as BF16): lm_head, MoE router (re:.*mlp\.gate$),
DeltaNet input projections (re:.*linear_attn\.in_proj_(a|b)$).
atbender/Qwen3.6-VL-REAP-26B-A3B (REAP prune from Qwen/Qwen3.6-35B-A3B)vllm-project/llm-compressor GPTQ W4A16 (CPU)convert_moe_ct_to_awq.py (compressed-tensors → native AWQ for
moe_wna16 kernel — 6× decode speedup on ROCm vs CT format)mattbucci/2x-R9700-RDNA4-GFX1201-sglang-inference7 commits
1
stars
7
commits
2
linked in READMEs
May 2, 2026
updated
This is a TEXT-ONLY model despite the "VL" in the name. Vision is structurally
broken at the REAP pruning source — the safetensors has 0 vision tensors. If you
need real vision, use mattbucci/Qwen3.6-35B-A3B-AWQ
(unpruned, full vision tower) or mattbucci/Qwen3.6-27B-AWQ
(dense, full vision tower).
Self-calibrated AWQ INT4 quantization of atbender/Qwen3.6-VL-REAP-26B-A3B,
the Cerebras-style REAP-pruned 26B-effective variant of Qwen/Qwen3.6-35B-A3B.
Calibrated 2026-05-02 using balanced_thinking_vision (512 samples × 2K, 33h GPTQ
on CPU) under SGLang v0.5.10 + RDNA4 patches on 2x AMD R9700 (gfx1201).
Qwen3_5MoeForConditionalGeneration (MoE + DeltaNet hybrid)moe_wna16 runtime kernel)| Capability | RDNA4 (R9700) | Ampere (3090) | Status |
|---|---|---|---|
| Basic Q&A | ✅ PASS | ✅ PASS | Both stacks clean |
| Thinking chain | ✅ PASS (977 tok, finish=stop) | ✅ PASS (1266 tok, finish=stop) | Both stacks clean |
| Vision | ❌ HSAIL crash | ❌ Hallucinates | Structurally broken on both — see below |
REAP pruning produced a checkpoint where the vision tower was fully removed.
Independently confirmed via safetensors.safe_open(model.safetensors) on both
stacks: 0 of 70233 tensors have vision or visual in the name.
The model card on the base repo claims "VL" capability, but the actual safetensors have no vision encoder weights. When asked to describe an image:
Same root cause on both stacks (REAP-stripped vision tower); different failure surfaces. Debugging the RDNA4 HSAIL won't recover vision since the inputs are garbage on both sides — only a re-prune that retains the vision tower would fix it.
# SGLang on RDNA4 (R9700) or Ampere (3090) — text-only paths
sglang.launch_server \
--model-path mattbucci/Qwen3.6-VL-REAP-26B-A3B-AWQ \
--quantization moe_wna16 \
--tp 2 \
--context-length 131072 \
--disable-cuda-graph
For vision workloads, switch to the unpruned variant
mattbucci/Qwen3.6-35B-A3B-AWQ.
balanced_thinking_vision (preserves thinking chains + image data when the base
has a vision tower; this base did not retain one, hence the limitation):
data_files="llava_instruct_150k.json" pinning)Ignore list (preserved as BF16): lm_head, MoE router (re:.*mlp\.gate$),
DeltaNet input projections (re:.*linear_attn\.in_proj_(a|b)$).
atbender/Qwen3.6-VL-REAP-26B-A3B (REAP prune from Qwen/Qwen3.6-35B-A3B)vllm-project/llm-compressor GPTQ W4A16 (CPU)convert_moe_ct_to_awq.py (compressed-tensors → native AWQ for
moe_wna16 kernel — 6× decode speedup on ROCm vs CT format)mattbucci/2x-R9700-RDNA4-GFX1201-sglang-inference7 commits