Views
No views yet

THIS IS A TEXT-ONLY MODEL — NO VISION
The upstream abliteration pass stripped the vision tower. For vision-capable Qwen 3.6 27B Opus-Distill MLX quants, see our parallel repos at huggingface.co/lemuralabs (look for repos without-abliteratedin the name).
Standard 6-bit MLX quantization. Effectively lossless on most reasoning benchmarks vs BF16. The recommended pick when you have the RAM headroom.
| Disk size | ~20 GB |
| Effective BPW | 6.0 |
| Scheme | Affine 6-bit, group size 64 (mlx-lm default) |
| Recommended RAM | 32 GB Apple Silicon (M4 Pro 32 GB, M3/M2 Max base) |
| Vision | No — text-only (the upstream abliteration step stripped the ViT) |
| Made by | Lemura Labs |
Qwen/Qwen3.6-27B (Qwen Team — base pretrain)
│
▼
TeichAI/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2 (TeichAI — Claude-Opus reasoning distill)
│
▼
abliterated (refusal-ablated) via OBLITERATUS v0.1.2 (multi-direction SVD, BF16)
│
▼
this repo — 6-bit affine, MLX format (Lemura Labs team — quantization)mlx-lm (recommended)pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("lemuralabs/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-abliterated-6bit-mlx")
4prompt = "Explain the difference between SSM and softmax attention in three sentences."
5out = generate(model, tokenizer, prompt=prompt, max_tokens=400)
6print(out)1messages = [
2 {"role": "system", "content": "You are a helpful, candid reasoning assistant."},
3 {"role": "user", "content": "Plan a 3-day Tokyo itinerary for a foodie."},
4]
5prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
6print(generate(model, tokenizer, prompt=prompt, max_tokens=600))mlx_lm.generate --model lemuralabs/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-abliterated-6bit-mlx --prompt "Hello" --max-tokens 256mlx-lm calibration_v5 (~427 KB English text, used for OptiQ sensitivity ranking; uniform/affine variants do not require calibration).-abliterated in the name).| Quantization & release | Lemura Labs |
| Reasoning distill | TeichAI (Claude-Opus 4.5/4.6 high-reasoning datasets) |
| Foundation model | Qwen Team |
| Abliteration toolkit | OBLITERATUS by elder-plinius |
| Quant toolkit | mlx-lm, mlx-optiq |
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×.1python3 -m mlx_vlm generate \
2 --model lemuralabs/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-abliterated-6bit-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 256mlx_vlm ≥ 0.5.0 and access to the gated drafter z-lab/Qwen3.6-27B-DFlash (one-click "Agree and access").DFLASH_SPECULATIVE_DECODING.md.