Views
No views yet
This is not a standalone model. It holds only the Multi-Token Prediction (MTP) drafter head, so it carries no token embeddings and nolm_headand it cannot generate text alone. Load it as the draft model beside a matching target, which supplies both.
Qwen/Qwen3.6-27B as 15 tensors under
the mtp. prefix, but the MLX converter deletes them when it builds the main
model, so the head is published separately and the runtime loads it as its
own model with model_type: qwen3_5_mtp.1mlx_vlm generate \
2 --model vvsotnikov/Qwen3.6-27B-MLX-4bit \
3 --draft-model vvsotnikov/Qwen3.6-27B-MTP-MLX-bf16 \
4 --prompt "Write a quicksort in Python." \
5 --max-tokens 256 --temperature 0.6 --enable-thinking1mlx_vlm generate \
2 --model /path/to/target-model \
3 --draft-model /path/to/Qwen3.6-27B-MTP-MLX-bf16 \
4 --prompt "Write a quicksort in Python." \
5 --max-tokens 256 --temperature 0.6 --enable-thinking--draft-kind mtp is detected from model_type, so you do not need to pass
it. The drafter proposes tokens each step while the target verifies them, and
only accepted tokens reach the output, so quality follows the target rather
than the drafter.qwen3_5_mtp3mlx-vlm 0.6.81python -m mlx_vlm.speculative.drafters.qwen3_5_mtp.split \
2 --model Qwen/Qwen3.6-27B --output Qwen3.6-27B-MTP-MLX-bf16mtp. tensors out of the base checkpoint, strips that
prefix, and adds 1.0 to every RMSNorm weight, because Qwen stores the norm
scale minus one.| Check | Result |
|---|---|
model_type | qwen3_5_mtp |
block_size | 3 |
| Tensors | 15, all bfloat16 |
| RMSNorm shift | applied exactly once, checked against the source |
| Acceptance | at least as high as the 4-bit drafter's 93.5% |
Qwen3.6-27B-MTP-MLX-bf16 <- this oneQwen3.6-27B-MTP-MLX-4bitQwen/Qwen3.6-27B
under Apache 2.0, so the original license and its terms carry over.
Read the license itself before you use this model.