Views
No views yet
MTP weights kept. This build does not strip the model's multi-token-prediction head — it is preserved at full bf16 precision (mtp_policy: keep_bf16) alongside the 8-bit quantized body, so native speculative decoding still works.
mlx_lm.convert quantization, this build preserves the model's native multi-token-prediction (MTP) head instead of discarding it, so it runs with real speculative decoding on mtplx — not just a quantized weight dump.mlx_lm.convert, and MLX inference engines built around dense-attention assumptions) silently strip the model's 15 MTP tensors during conversion — the model still loads and generates, but you lose the native speculative-decoding speedup entirely, often without any error or warning.mtp_policy: keep_bf16, which retains the MTP block in full precision alongside the quantized body, and validates it with mtplx's tune verification suite (long-code-uncapped, 2048 max tokens) before shipping.| Parameter | Value |
|---|---|
| Body precision | 8-bit affine |
| Group size | 64 |
| MTP head | kept at bf16 (not quantized) |
| Source | Qwen/Qwen3.8-27B (bf16 native) |
mlx-lm can load this model's body weights but will not use the MTP head.1mtplx quickstart --model johninthepool/Qwen3.8-27B-MTPLX-8bit --port 8020 \
2 --reasoning off --paged-kv-quantization q8--reasoning off is recommended for agentic/tool-calling workloads — leaving reasoning on causes this model to spend a large number of tokens per turn on hidden thinking before it produces usable output.--paged-kv-quantization q8 quantizes the KV cache to 8-bit, giving substantially larger usable context at negligible quality cost. Qwen3.8-27B natively supports up to 262,144 tokens of context (extendable to ~1M with YaRN).Qwen/Qwen3.8-27B weights with no fine-tuning, distillation, or calibration pass applied — this is a direct affine (round-to-nearest) quantization of the release weights, with the MTP head kept unquantized. No behavioral changes beyond quantization noise are expected relative to the source model.