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).
Uniform 4-bit assignment via mlx-optiq — same group size (64) as mlx-lm's default 4-bit but produced through OptiQ's calibration-aware path for better recovery on the boundary layers.
| Disk size | ~14 GB |
| Effective BPW | 4.0 |
| Scheme | OptiQ uniform 4-bit (group size 64, affine) |
| Recommended RAM | 16 GB Apple Silicon comfortably; 24 GB with long context |
| 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 — OptiQ uniform 4-bit, 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-OptiQ-4bit-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-OptiQ-4bit-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 |