Views
No views yet
[!TIP] KV-cache quantization without any fork (recommended, 2026): upstream llama.cpp/Ollama now cover this natively — use-ctk q8_0 -ctv q8_0(~half KV memory, negligible quality loss: perplexity +0.002–0.05) or-ctk q4_0 -ctv q4_0(~quarter memory, ≈7.6% perplexity increase). In Ollama:OLLAMA_KV_CACHE_TYPE=q8_0withOLLAMA_FLASH_ATTENTION=1. Keep K and V types symmetric to stay on the fast fused Flash-Attention path. Since April 2026, mainline llama.cpp also applies Hadamard rotation to KV activations (PR #21038), which greatly improves low-bit KV quality (opt-out:LLAMA_ATTN_ROT_DISABLE=1).The RotorQuant/TurboQuant fork flow below is experimental/legacy: the TurboQuant llama.cpp PR was closed without merging (June 2026) and the fork is unmaintained relative to mainline. It is NOT required to use this model.
| Property | Value |
|---|---|
| Base Model | MERaLiON/MERaLiON-3-10B-preview |
| Parameters | ~10 billion |
| Architecture | Multimodal audio-language (Gemma-2 decoder backbone) |
| Modality | Audio + text input, text output |
| License | See base model |
| Weight Quantization | 2-bit (~3 GB) |
| KV-Cache Quantization | RotorQuant |
| Framework | MLX (Apple Silicon) |
1from mlx_lm import load, generate
2
3model, tokenizer = load("majentik/MERaLiON-3-10B-RotorQuant-MLX-2bit")
4
5prompt = "Transcribe the following audio:"
6response = generate(model, tokenizer, prompt=prompt, max_tokens=512)
7print(response)-ctk/-ctv q8_0, OLLAMA_KV_CACHE_TYPE).| Method | Prefill Speed | Decode Speed | Memory Savings | Reference |
|---|---|---|---|---|
| TurboQuant | Baseline | Baseline | High | arXiv: 2504.19874 |
| Precision | Approximate Size | MLX Variant |
|---|---|---|
| FP16 (original) | ~20 GB | -- |
| 8-bit quantized | ~10 GB | RotorQuant-MLX-8bit |
| 4-bit quantized | ~5 GB | RotorQuant-MLX-4bit |
| 2-bit quantized | ~3 GB | This model |
| Bits | Approx size | Use case | Recommendation |
|---|---|---|---|
| 2-bit | ~2.6 GB | Aggressive quantization | Very low-RAM Macs |
| 3-bit | ~3.6 GB | Lossy but small | Low-RAM Macs |
| 4-bit | ~4.2 GB | Balanced default | Recommended for most Macs |
| 5-bit | ~5.0 GB | Higher fidelity | Quality-sensitive |
| 6-bit | ~6.0 GB | Approaching FP16 quality | High-fidelity |
| 8-bit | ~7.6 GB | Near-lossless reference | Fidelity-critical work |
majentik/meralion3-10b-*. The current variant — RotorQuant-MLX-2bit — is bolded.)| Variant | Runtime | Approx size | Use case |
|---|---|---|---|
| RotorQuant-MLX-2bit | mlx-lm | ~3.2 GB | Apple Silicon, smallest |