Mixed-precision quant of
trohrbaugh/Qwen3.8-27B-heretic-ara, produced with
oQ (oMLX v0.5.8.dev1). 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 4-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 4-bit. Typical result: ~4.6 bits-per-weight.
The original BF16 weights require ~55 GB. This oQ4e quant runs in ~16–18 GB on Apple Silicon while keeping the vision tower and MTP head intact.
1# oMLX
2omlx serve --model underlotus/Qwen3.8-27B-heretic-ara-oQ4e-mtp
1# mlx-lm
2from mlx_lm import load, generate
3
4model, tokenizer = load("underlotus/Qwen3.8-27B-heretic-ara-oQ4e-mtp")
5response = generate(model, tokenizer, prompt="Hello!", max_tokens=256)
6print(response)
Apache 2.0, inherited from base model.