Yes — MULTIMODAL. Bundled mmproj.gguf (~928 MB, F16) preserves the full Qwen3.6-VL vision tower. Use it with llama-server --mmproj or llama-mtmd-cli for text + image inference.
Q8_0 (8-bit, 8.50 BPW) of a abliterated Qwen 3.6 27B v2 (the Jackrong Claude-Opus reasoning distill of Qwen 3.6 27B). Refusals reduced from 91/100 → 4/100 with KL drift of just 0.0176. By the Lemura Labs research team.
TL;DR
Property
Value
Disk size
~28 GB (27 GB LM + 928 MB mmproj)
BPW
8.50 (Q8_0)
Scheme
llama.cpp Q8_0 — symmetric 8-bit per-block scale, no FFN downcasting.
Refusal rate (the ablation toolkit, n=100)
4/100 (vs vanilla Qwen 3.6 91/100)
KL divergence vs vanilla (at BF16)
0.0176
Vision
Yes — via paired mmproj.gguf
Recommended RAM/VRAM
36 GB+ Apple Silicon / 32 GB GPU
Runtime
stock ggml-org/llama.cpp (any recent build) — no custom fork needed for Q8_0.
Released by
Lemura Labs
All Qwen3.6-27B variants
The full Qwen3.6-27B family from Lemura Labs — same abliterated weights (refusal 4/100, KL 0.0176), different quant schemes for different runtimes.
1./build/bin/llama-cli \2 -m Qwen3.6-27B-V2-abliterated-uncensored-Q8_0.gguf \3 -ngl 99\4 -c 8192\5 --jinja \6 -p "Explain the difference between SSM and softmax attention in three sentences."
Ollama / LM Studio / Jan
Drop the two GGUF files into the runtime's models directory; standard multimodal flow.
Quantization details
Source weights: BF16 abliterated checkpoint (12 shards, ~50 GB) — the ablation toolkit T45 merged into Jackrong/Qwopus3.6-27B-v2.
Intermediate: F16 GGUF (53.8 GB, 851 tensors) produced by convert_hf_to_gguf.py from turbo-tan/llama.cpp-tq3.
Final quantization: see Step 4 above.
Vision projector: F16, 928 MB, shipped as mmproj-Qwen 3.6 27B-v2-abliterated-F16.gguf in this repo. Mandatory for image input; standard llama.cpp --mmproj flag.
Architecture notes
Qwen 3.6 27B uses a hybrid attention stack — 3 GatedDeltaNet (linear attention / SSM) layers followed by 1 full-softmax-attention layer, repeated 16× for 64 total layers; hidden 5120, vocab 248320, context 262144. The hybrid arch is supported in the turbo-tan/llama.cpp-tq3 fork (the upstream Qwen3_5ForConditionalGeneration registration). The SSM kernels run via llama.cpp's ssm_* tensor types.
Behavior caveats
Uncensored. Refusal directions were surgically removed; this model will answer prompts the parent would refuse. Use responsibly and within applicable law. The release is provided for safety research, red-teaming, and creative/educational use cases.
Multimodal preserved. Pair the LM GGUF with mmproj.gguf (in this repo) to get full vision input. Without mmproj, the model still loads as text-only.
Identity preserved. The model still self-identifies as Qwen (developed by Alibaba's Tongyi Lab) — abliteration does not rewrite factual self-knowledge.
Heavy chain-of-thought. Qwen 3.6 inherits Claude-Opus's verbose reasoning style. For terse answers, use a system prompt like "Be brief and direct. Skip your reasoning.".