Views
No views yet
Built with mlx-optiq, the MLX-native toolkit to quantize, fine-tune, and serve LLMs locally on Apple Silicon, no PyTorch and no cloud. Try the Lab · All OptiQ quants · Docs
| Property | Value |
|---|---|
| Predominant precision | 4-bit |
| Layers at 8-bit (sensitive) | 134 |
| Layers at 4-bit (robust) | 114 |
| Total quantized layers | 248 |
| Achieved bits per weight | 5.211 |
| Group size | 64 |
| Calibration mix | six-domain mix |
| Reference for sensitivity | uniform-4-bit |
| Vision tower | bf16, 333 tensors, in optiq/optiq_vision.safetensors |
| Bundled MTP head | optiq/mtp.safetensors (4-bit projections, BF16 norms) |
| Size on disk | 7.6 GB (language 6.6 GB, sidecars 1.0 GB), from an 18 GB bf16 base |
llama.cpp uses for Q4_K_M and similar mixed-precision quants: the "4-bit" label is the predominant precision, not the weighted average.mlx-lm and use it as usual. The sidecars live in an optiq/ subfolder, so a stock *.safetensors glob ignores them and mlx-lm sees a clean language model.pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("mlx-community/Qwythos-9B-v2-OptiQ-4bit")
4response = generate(
5 model, tokenizer,
6 prompt="Explain quantum computing in simple terms.",
7 max_tokens=512,
8)<think>...</think> before answering, so give it enough max_tokens to finish.mlx-optiq, which loads the bf16 vision sidecar and feeds the merged embeddings to the quantized language tower:pip install mlx-optiq1from PIL import Image
2from optiq.runtime.engine import OptiqEngine
3
4engine = OptiqEngine("mlx-community/Qwythos-9B-v2-OptiQ-4bit")
5answer = engine.generate(
6 "What is in this image?",
7 images=[Image.open("photo.jpg")],
8 max_tokens=512,
9)
10print(answer.text)optiq serve --model mlx-community/Qwythos-9B-v2-OptiQ-4bitoptiq/mtp.safetensors:optiq serve --model mlx-community/Qwythos-9B-v2-OptiQ-4bit --mtpoptiq convert empero-ai/Qwythos-9B-v2 --target-bpw 5.0 --reference uniform_4bit. The recipe matches mlx-community/Qwen3.5-9B-OptiQ-4bit, the quant of the base architecture this model is tuned from, which lands at the same bits per weight.