Views
No views yet
| Property | Value |
|---|---|
| Base model | Qwen/Qwen3.6-27B |
| Abliteration | Heretic2 by DavidAU (~95-99% refusal removal) |
| Format | MLX 3-bit (q-bits=3, group-size=64) |
| Parameters | ~27B |
| Vision | ✅ Preserved (multimodal) |
| Thinking mode | ✅ |
| Context window | 262K tokens (extensible to 1M) |
| Languages | English, Chinese (140+) |
| Architecture | qwen3_5 |
| Benchmark | Score |
|---|---|
| SWE-bench Verified | 77.2% |
| Terminal-Bench 2.0 | 59.3% (matches Claude 4.5 Opus) |
| SkillsBench | 48.2% |
| GPQA Diamond | 87.8% |
| Context window | 262K native / 1M extended |
mlx-vlm installedpip install mlx-vlm1from mlx_vlm import load, generate
2
3model, processor = load("IITheLordII/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-mlx-3bit")
4output = generate(model, processor, prompt="Write a bash script to monitor Proxmox CPU usage.", max_tokens=512)
5print(output)1from mlx_vlm import load, generate
2
3model, processor = load("IITheLordII/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-mlx-3bit")
4output = generate(
5 model,
6 processor,
7 prompt="Describe what you see in this image.",
8 image="path/to/image.jpg",
9 max_tokens=256
10)
11print(output)1output = generate(
2 model,
3 processor,
4 prompt="<think>\nAnalyze this infrastructure issue step by step.\n</think>",
5 max_tokens=1024
6)IITheLordII/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-mlx-3bit in LM Studio model browser (MLX filter enabled).1python3 -m mlx_vlm convert \
2 --hf-path DavidAU/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking \
3 --mlx-path ./qwen3.6-27b-heretic2-mlx-3bit \
4 -q --q-bits 3 --q-group-size 64Note:mlx-vlmis required (notmlx-lm) to preserve the vision tower.