Mixed-precision quant of
trohrbaugh/Qwen3.8-27B-heretic-ara, produced with
oQ (oMLX v0.6.2). Vision tower intact — image + video input still works. MTP head preserved. Standard MLX safetensors — compatible with oMLX, mlx-lm, LM Studio, and any MLX-capable app.
Unlike uniform 3-bit quantization,
oQ is a data-driven mixed-precision quantizer that calibrates per-layer sensitivity and allocates bits where they matter most. Critical layers (embeddings, LM head, the most sensitive transformer layers) are automatically promoted to higher precision, while less sensitive layers stay at 3-bit.
With Lightning MTP enabled.
The original BF16 weights require ~55 GB. This oQ3.5e quant runs in ~16–18 GB on Apple Silicon while keeping the vision tower and MTP head intact — a middle ground between oQ3e and oQ4e.
1# oMLX
2omlx serve --model underlotus/Qwen3.8-27B-heretic-ara-oQ3.5e-mtp
1# mlx-lm
2from mlx_lm import load, generate
3
4model, tokenizer = load("underlotus/Qwen3.8-27B-heretic-ara-oQ3.5e-mtp")
5response = generate(model, tokenizer, prompt="Hello!", max_tokens=256)
6print(response)
Apache 2.0, inherited from base model.