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
mlx-lm and image+text under OptiQ.| Property | Value |
|---|---|
| Predominant precision | 4-bit |
| Layers at 8-bit (sensitive) | 261 |
| Layers at 4-bit (robust) | 237 |
| Total quantized layers | 498 |
| Group size | 64 |
| Vision tower | bf16, optiq/optiq_vision.safetensors (0.9 GB) |
| Calibration mix | six-domain mix (40 samples × 6 domains) |
| Reference for sensitivity | uniform-4-bit (bf16 at this size does not fit 36 GB) |
| On-disk size | 19.0 GB |
llama.cpp uses for Q4_K_M and similar mixed-precision quants: the "4-bit" label is for the predominant precision, not the weighted average.mlx-lm for text:pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("mlx-community/Qwen3.8-27B-OptiQ-4bit")
4response = generate(
5 model, tokenizer,
6 prompt="Explain quantum computing in simple terms.",
7 max_tokens=200,
8)mlx-optiq:1pip install mlx-optiq
2optiq serve --model mlx-community/Qwen3.8-27B-OptiQ-4bit| Metric | Score |
|---|---|
| MMLU (5-shot, 1000) | 84.1% |
| GSM8K (3-shot CoT) | 96.1% |
| IFEval (prompt-level, strict) | 77.1% |
| BFCL-V3 simple (AST) | 93.5% |
| HumanEval (pass@1) | 92.1% |
| HashHop (long-context retrieval) | 85.0% |
| Capability Score (mean of 6) | 87.98 |
1pip install mlx-optiq
2optiq convert Qwen/Qwen3.8-27B --target-bpw 5.0 --candidate-bits 4,8
3optiq lab # or drive the whole thing from the browser