Views
No views yet
| Property | Value |
|---|---|
| Predominant precision | 4-bit |
| Layers at 8-bit (sensitive) | 141 |
| Layers at 4-bit (robust) | 111 |
| Total quantized layers | 252 |
| Achieved bits per weight | 5.12 |
| Group size | 64 |
| Calibration mix | six-domain mix (40 samples × 6 domains) |
| Reference for sensitivity | bf16 |
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. The few sensitive layers held at 8-bit make this build +0.5 GB larger than a stock uniform-4-bit quant (2.1 GB vs 1.6 GB) while recovering quality the uniform quant loses.mlx-lm and use it as usual:pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("mlx-community/VibeThinker-3B-OptiQ-4bit")
4response = generate(
5 model, tokenizer,
6 prompt="Explain quantum computing in simple terms.",
7 max_tokens=512,
8)<think>…</think> block before its final answer. Give it room with max_tokens.mlx-optiq:pip install mlx-optiq