An
OptiQ mixed-precision quantization of
DavidAU/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking,
built for Apple Silicon with MLX.
OptiQ assigns a per-layer bit-width (4-bit or 8-bit here) instead of quantizing
every layer the same, so the layers that need the precision keep it.
The per-layer allocation is reused from
mlx-community/Qwen3.6-27B-OptiQ-4bit,
which shares the same Qwen3.6-27B architecture, so no separate sensitivity pass
was run for this fine-tune. This is a text-only quant of the language tower.
1pip install mlx-optiq
2optiq serve --model mlx-community/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-OptiQ-4bit
1from mlx_lm import load, generate
2model, tokenizer = load("mlx-community/Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking-OptiQ-4bit")
See
mlx-optiq.com for the CLI, the local Lab UI, and the
OptiQ Code agent. The base model and its behavior are DavidAU's; this repo only
changes the quantization.