Mixed-precision MLX quantization of
Qwen3.5-122B-A10B — Alibaba's latest MoE model with full vision support preserved in BF16.
This model brings 122B-class multimodal performance to Apple Silicon. By utilizing advanced mixed-precision quantization, we've compressed the model from uniform 4-bit's 65GB down to 52GB — a 13GB reduction — while preserving the full vision pipeline at BF16 precision for lossless image understanding.
Lower is better. Evaluated on 128 sequences × 2048 tokens.
1from mlx_vlm import load, generate
2
3model, processor = load("MoringLabs/Qwen3.5-122B-A10B-MLX-3.7bit-VL")
4
5# 文本对话
6response = generate(model, processor, prompt="Hello!", max_tokens=200)
7
8# 图像理解
9response = generate(model, processor, prompt="Describe this image", image="photo.jpg", max_tokens=200)
10print(response)