Views
No views yet
Qwen/Qwen3.8-27B using mlx-vlm version
0.6.8, and quantized to 8 bits, so it runs on Apple
silicon through mlx-vlm. Refer to the
original model card for more details
on the model itself.Qwen3.8-27B-MTP-MLX-8bit
to get speculative decoding, because Qwen carries a Multi-Token Prediction
head that the MLX conversion moves into a separate repository.1pip install -U mlx-vlm
2
3mlx_vlm generate \
4 --model vvsotnikov/Qwen3.8-27B-MLX-8bit \
5 --draft-model vvsotnikov/Qwen3.8-27B-MTP-MLX-8bit \
6 --prompt "Write a quicksort in Python." \
7 --max-tokens 256 --temperature 0.6 --enable-thinking--draft-model to decode without the speculator.1mlx_vlm convert --hf-path Qwen/Qwen3.8-27B \
2 --mlx-path Qwen3.8-27B-MLX-8bit -q --q-bits 8 --q-group-size 64embed_tokens, lm_head and the
linear_attn projections. The vision tower stays dense in bfloat16, since
the converter skips multimodal modules by default.| Check | Result |
|---|---|
| Quantization | {bits: 8, group_size: 64, mode: affine} |
| Quantized modules | 498 of 2180 tensors |
| Vision tower | dense, 333 tensors |
| MTP tensors | 0, moved to the drafter repository |
| Acceptance with the 8-bit drafter | 94.2% of drafted tokens accepted, 2.88 accepted tokens/round, over 69 rounds, 16.021 tok/s |
Qwen/Qwen3.8-27B
under Apache 2.0, so the original license and its terms carry over.
Read the license itself before you use this model,
and refer to the upstream model card for the model's capabilities and limits.