Yes — VISION PRESERVED. Unlike most abliteration pipelines that strip the vision tower, this release keeps the full Qwen3.6-VL ViT (333 vision weights intact). Use it as a real multimodal model.
MLX 6-bit affine quantization 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 (measured at BF16; quant inherits these properties). By the Lemura Labs research team.
Sweet spot for 32 GB Macs — 21 GB on disk, near-bf16 fidelity, full vision.
TL;DR
Property
Value
Disk size
~21 GB
Effective BPW
6.661 (6 bits + 16-bit scale/bias per group of 64)
Scheme
MLX affine, group_size=64, mode=affine, bits=6
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 — Multimodal (333 ViT weights preserved)
Recommended RAM
32 GB+ Apple Silicon (M-series Pro / Max / Ultra)
Best for
High-fidelity local inference; 32 GB Macs; vision + text
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.
the ablation toolkit measures refusals on mlabonne/harmful_behaviors (100 hard red-team prompts) and KL divergence on mlabonne/harmless_alpaca.
Stage
Refusals (n=100) ↓
KL divergence ↓
Vanilla Jackrong/Qwopus3.6-27B-v2
91 / 100
— (reference)
Community prior: coder3101 (T27)
4 / 100
0.0359
Community prior: wangzhang (T28)
30 / 100
0.0259
TPE best (T45) — shipped here
4 / 100
0.0176
TPE second-best (T37)
5 / 100
0.0210
→ 96% reduction in refusals with capability preserved (KL ≈ 0.018, well below the 0.3 healing threshold). No SFT / LoRA healing was required.
Method (TPE-50 with community priors)
Smoke — 3-trial dry run on the ablation toolkit / Python 3.11 / MPS to validate batch size 4 was feasible on M4 Max 128 GB.
Random search — 25 startup trials over the ablation toolkit's full parameter space (direction_index, attn.o_proj.{max,min}_weight[_position,_distance], mlp.down_proj.{max,min}_weight[_position,_distance]). Best random-stage trial: T4 at direction_index=54.49, refusals 41/100, KL 0.0073 — capability-clean but still too refusing.
Community-prior enqueueing — published Qwen 27B the ablation toolkit runs (coder3101 on Qwen 3.5, wangzhang on Qwen 3.6) consistently localize the refusal direction near layer 35–38 of 64. We injected both as study priors via study.enqueue_trial(skip_if_exists=True).
TPE smart-sampling — 23 Tree-structured Parzen Estimator trials refined around the community neighborhood. Trial 45 (direction_index=41.42) found the new Pareto front: 4/100 refusals at KL=0.0176.
Auto-save — best Pareto trial merged into base weights via the ablation toolkit's LoRA-adapter merge path; saved as BF16 safetensors with vision weights preserved (333 weights).
MLX conversion — mlx_vlm.convert --hf-path ... -q --q-bits 6 --trust-remote-code produced this 6-bit variant. Vision weights verified post-conversion (333 still present).
Total wall-clock: ~13 h on M4 Max 128 GB.
In-place the ablation toolkit patches used (env-var driven, no TTY required):
Qwen 3.6 27B uses a hybrid attention stack — 3 linear-attention (GatedDeltaNet / SSM) layers followed by 1 full-softmax-attention layer, repeated 16× for 64 total layers; hidden 5120, vocab 248320, context 262144. The hybrid is fully supported by mlx-vlm 0.5.0+. For inference latency at 6-bit, expect ~11-13 tok/s on M4 Max 128 GB at batch size 1.
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.
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.".
Apache-2.0, inherited from the foundation (Qwen3.6-27B) and the distill (Qwen 3.6 27B-v2) upstream.
Need a hosted endpoint, custom quant, or larger-scale inference? Lemura Labs — multi-provider LLM routing for the Indian developer ecosystem.
3.3–3.7× faster decoding with DFlash (lossless, MLX)
This MLX build supports lossless block-diffusion speculative decoding via DFlash in mlx_vlm — no requantization, no model changes. On an Apple M4 Max we measured 3.38× (8-bit) and 3.67× (bf16) decode speedups with byte-identical output; other MLX quants of this model should see a similar ~3×.
bash
1python3 -m mlx_vlm generate \2 --model lemuralabs/Qwen3.6-27B-V2-abliterated-uncensored-6-bit-mlx \3 --draft-model z-lab/Qwen3.6-27B-DFlash --draft-kind dflash \4 --prompt "Write a merge function for two sorted lists in Python." --max-tokens 256
Requires mlx_vlm ≥ 0.5.0 and access to the gated drafter z-lab/Qwen3.6-27B-DFlash (one-click "Agree and access").
Accelerates the text path only (vision is unaffected); adds ~3.9 GB for the drafter.