Views
No views yet
| Property | Value |
|---|---|
| Base model | Qwen/Qwen3.6-27B |
| Abliteration | Heretic2 by DavidAU (~95-99% refusal removal) |
| Format | MLX 4-bit (q-bits=4, group-size=64) |
| Parameters | ~27B |
| Vision | ✅ Preserved (multimodal) |
| Thinking mode | ✅ |
| Context window | 262K tokens |
| Languages | English, Chinese (140+) |
| Architecture | qwen3_5 |
mlx-vlm installedpip install mlx-vlm1from mlx_vlm import load, generate
2
3model, processor = load("IITheLordII/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-mlx-4bit")
4output = generate(model, processor, prompt="Explain quantum computing simply.", max_tokens=512)
5print(output)1from mlx_vlm import load, generate
2
3model, processor = load("IITheLordII/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-mlx-4bit")
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>\nSolve step by step: what is the derivative of x^3 + 2x?\n</think>",
5 max_tokens=1024
6)IITheLordII/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-mlx-4bit in the LM Studio model browser (MLX filter enabled).| Context | TG (tok/s) |
|---|---|
| 1k | ~14-16 |
| 4k | ~14-16 |
1python3 -m mlx_vlm convert \
2 --hf-path DavidAU/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking \
3 --mlx-path ./qwen3.6-27b-heretic2-mlx-4bit \
4 -q --q-bits 4 --q-group-size 64Note:mlx-vlmis required (notmlx-lm) to preserve the vision tower.