The hybrid quant employs different quantization levels on a per layer basis to enable
both high performance and small file size at the same time. The quants employed are all K to avoid
slow CPU or older GPU processing of IQ quants. An extended layer definition E quant Q4_E_H for the model
is defined as follows (updated 8/25/2026):
Qwen3.5-27B is a vision capable dense RL model. It can be used together with its multimedia projector layers to process images and text inputs
and generate text outputs. The mmproj file is made available in this repository.
Due to the attention scheme used in the model, straightforward speculation approaches cannot be used.
Later versions of llama.cpp as of 4/23/2026 attempt to circumvent this problem however efficiency will
not be good so use of speculation prior to Qwen3.5 MTP patches is not recommended.
As of llama.cpp b9180 MTP support for the model was added to upstream and may be experimented with by using the Q4_E_H_MTP quant.
On a 2x 4070 setup (1 RPC) approx performance is:
Q
QKV
NKV
gen tps
Q4_E_H
F16
100k +
25
Q4_E_H
Q8_0
160k +
23
The model appears to be trained to decide itself whether to do a think block or not. When it does a think block it can fall into very
heavy overthinking on ambiguous/trick prompts. Over a small set of eval prompts the model did extremely well. To avoid
the overthinking inject think start and think stop tokens first thing after assistant prompt:
If the model doesnt feel like doing thinking on a given prompt it will automatically do this. To force the model into
a think block inject a bootstrap think start following the assistant prompt:
"<think>\n"
The model was found to be highly capable on reasoning tasks when skipping think block.
VISION:
The model was tested in vision mode on a couple pretty tough bird ID image and did extremely well handling the images with concise,
informative, accurate, and efficient reasoning blocks.
CODE:
The model was tested across a small set of code gen prompts and found to be quite capable in its ability to generate working code, though
it did fall into a rep loop with think enabled on one of the test prompts.