MegawizCo/typhoon-ocr-3b-mlx-q8
Typhoon-OCR-3B — MLX q8
MLX-quantized port of `typhoon-ai/typhoon-ocr-3b` for native Apple Silicon inference. Higher-quality sibling of `MegawizCo/typhoon-ocr-3b-mlx-q4`; pick this one if you need the lowest CER and can spare the RAM.
Quantization: 8-bit affine, group size 64. Effective rate 9.836 bits/weight. Size on disk: 4.3 GB.
Benchmark
7-image internal smoke set (2 synthetic printed Thai/English + 5 synthetic mixed-Thai handwriting). Same prompt (Extract all text from this image.) on Mac mini Apple Silicon, 2026-05-12:
q8 fixes the one handwriting sample where q4 lost ~1pp of CER, at the cost of 30% extra wall time + 1.5GB extra RAM. The 0.081 CER cap on one synthetic handwriting sample is consistent across all backends — likely a font-rendering ambiguity, not a quant defect.
The test set is synthetic — generated Thai medical-style text — not real PHI. Real-world photographed handwriting is harder; expect higher CER.
Usage
uv pip install mlx-vlmfrom mlx_vlm import generate, load
from mlx_vlm.prompt_utils import apply_chat_template
from mlx_vlm.utils import load_config
model, processor = load("MegawizCo/typhoon-ocr-3b-mlx-q8")
config = load_config("MegawizCo/typhoon-ocr-3b-mlx-q8")
prompt = apply_chat_template(processor, config, "Extract all text from this image.", num_images=1)
out = generate(model, processor, prompt, image=["prescription.png"], max_tokens=512)
print(out.text) # Typhoon-OCR wraps output in {"text": "..."}CLI:
mlx_vlm.generate \
--model MegawizCo/typhoon-ocr-3b-mlx-q8 \
--image prescription.png \
--prompt "Extract all text from this image." \
--max-tokens 512Conversion command
mlx_vlm.convert \
--hf-path typhoon-ai/typhoon-ocr-3b \
-q --q-bits 8 \
--mlx-path typhoon-ocr-3b-mlx-q8License & attribution
- License: Apache 2.0 — inherited from upstream
typhoon-ai/typhoon-ocr-3b. - Base model: SCB 10X / Typhoon AI.
- Quantization + repackaging: MegawizCo (2026-05-12).
- Vision architecture: Qwen2.5-VL.
Related
- `MegawizCo/typhoon-ocr-3b-mlx-q4` — faster, smaller, slight CER trade-off
