GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

a4lg/Qwen3.5-35B-A3B-MTP-ONLY-GGUF overview

MTP only GGUF subset of Qwen3.5/3.6 Medium/Large models ======================================================== This is a supplement for Qwen3.5 35B A3B based…

ggufqwen3.5speculative-decodingmtpmtp onlybase_model:Qwen/Qwen3.5-35B-A3Bbase_model:quantized:Qwen/Qwen3.5-35B-A3Blicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~1.51 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
Author

Repository Files & Downloads

5 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Qwen3.5-35B-A3B-MTP-ONLY-BF16.ggufGGUFBF163.48 GBDownload
Qwen3.5-35B-A3B-MTP-ONLY-Q4_K_M.ggufGGUFQ4_K_M1.51 GBDownload
Qwen3.5-35B-A3B-MTP-ONLY-Q5_K_M.ggufGGUFQ5_K_M1.60 GBDownload
Qwen3.5-35B-A3B-MTP-ONLY-Q6_K.ggufGGUFQ6_K1.73 GBDownload
Qwen3.5-35B-A3B-MTP-ONLY-Q8_0.ggufGGUFQ8_01.85 GBDownload

Model Details

Model IDa4lg/Qwen3.5-35B-A3B-MTP-ONLY-GGUF
Authora4lg
Pipeline
Licenseapache-2.0
Base modelQwen/Qwen3.5-35B-A3B
Last modified2026-06-30T23:42:09.000Z

Model README

---

library_name: gguf

license: apache-2.0

license_link: https://huggingface.co/Qwen/Qwen3.5-35B-A3B/blob/59d61f3ce65a6d9863b86d2e96597125219dc754/LICENSE

base_model:

  • Qwen/Qwen3.5-35B-A3B

base_model_relation: quantized

tags:

  • qwen3.5
  • speculative-decoding
  • mtp
  • mtp only
  • gguf

---

MTP-only GGUF subset of Qwen3.5/3.6 Medium/Large models

========================================================

This is a supplement for Qwen3.5-35B-A3B-based models (including fine-tunes and

abliterated models) without MTP tensors.

This repository contains an MTP-only subset of Qwen/Qwen3.5-35B-A3B

which provides the draft model for speculative decoding in the GGUF format.

It accelerates token generation using speculative decoding with the draft model

from the original Qwen model. In most cases, this is sufficient to accelerate

Qwen-based derivative models even if this draft model is not trained from them.

Note that however, the performance metrics heavily depend on the derivative

model you use, your machine and your MTP settings.

Benchmark it before blindly trusting it.

Using this Model

-----------------

It can be used in two ways:

  1. As a separate draft model file (Method 1)
  2. As a donor for grafting the draft model into a Qwen-based model

(Method 2; Recommended)

Method 1: Separate Draft Model File

It is easy to begin with but memory-inefficient as it does not share

some tensors with the original model.

If you find the draft model can accelerate a Qwen-based model you use, grafting

the draft model (Method 2) is recommended (note: switching to Method 2 may

slightly change the acceptance rate).

If you use llama-server, you may configure like this:

llama-server \
    --model       Qwen3.6-27B-finetune-Q4_K_M.gguf \
    --model-draft Qwen3.6-27B-MTP-ONLY-Q4_K_M.gguf \
    ... \
    --spec-type draft-mtp
    --spec-draft-n-max 4

--model specifies the original Qwen-based model and

new --model-draft specifies a file from this repository.

You also need --spec-type draft-mtp to enable the draft model.

Once the draft model is enabled, you may configure the rest of MTP options

as you like (in this example, custom --spec-draft-n-max is specified).

Method 2: Grafting the Draft Model (Using this as a Donor)

This is recommended.

First, download convert.py

written by @buzz to transplant MTP tensors.

You may also need to install some dependencies required by this script.

Then, you can run this script like:

# ./convert.py INPUT MTP OUTPUT
python3 convert.py \
    Qwen3.6-27B-finetune-Q4_K_M.gguf \
    Qwen3.6-27B-MTP-ONLY-Q4_K_M.gguf \
    Qwen3.6-27B-finetune-Q4_K_M+MTP.gguf

The second argument of convert.py is a GGUF file (donor) from this repository.

Once the grafted GGUF file is created, you may use this like a regular

Qwen model with embedded draft model.

This is an example for llama-server users.

llama-server \
    --model Qwen3.6-27B-finetune-Q4_K_M+MTP.gguf \
    ... \
    --spec-type draft-mtp
    --spec-draft-n-max 4

The output of convert.py must be specified as the model file name

(DO NOT use --model-draft in this case).

--spec-type draft-mtp enables the draft model transplanted into the main one.

Additional Quantization (Q4_K_M, Q5_K_M, Q6_K and Q8_0)

----------------------------------------------------------------

Quantized GGUF files are provided so that deploying the draft model easier.

To maximize the accuracy, tensor types are based on Unsloth quants

(see the table below):

| This Repo | Unsloth |

| --------- | ------------ |

| Q4_K_M | UD-Q4_K_XL |

| Q5_K_M | UD-Q5_K_XL |

| Q6_K | UD-Q6_K_XL |

| Q8_0 | UD-Q8_K_XL |

It is not required to match the quantization level.

For instance, you may pair Q6_K-quantized draft model with

the Q4_K_S-quantized main model.

Conversion Process

-------------------

The if block right after # verify tensor name presence and identify potentially missing files is commented out.

This modification is performed because the author of this repository downloaded

only a subset of the full Qwen model while the original convert_hf_to_gguf.py

expects the full model.

The --mtp option of convert_hf_to_gguf.py is the crucial part of this

conversion process because this option does exactly what the author expects:

create an MTP-only GGUF subset.

For additional quantization, the llama-quantize tool (llama.cpp) is used:

  • Without --imatrix
  • With custom --tensor-type-file to port tensor types from Unsloth's quants

License and Copyright

----------------------

For all GGUF files under this repository,

the license terms of the original Qwen model (Apache License version 2.0)

applies (as the author of this repository did not perform any changes

significant enough for own copyright):

> Copyright 2026 Alibaba Cloud

No NOTICE files are attached in the original model.

This README file is licensed under the terms of CC-BY-4.0.

> Copyright 2026 a4lg.

Links: Sources

---------------

Links: All MTP Subsets: Qwen3.5/3.6

------------------------------------

Run a4lg/Qwen3.5-35B-A3B-MTP-ONLY-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models