CoolFace
Modelpublic

Luis23333/Qwen3.8-27B-SSMFIX-UD-Q3_K_XL-GGUF

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
2likes3kdownloads
Model Card

Qwen3.8-27B-SSMFIX-UD-Q3KXL-GGUF

中文说明
Experimental community conversion. This is not an official Qwen release.

This repository contains a single GGUF text-inference model:

Qwen3.8-27B-BF16-SSMFIX-UD-Q3_K_XL.gguf

It is derived from the repaired BF16 model redashes/Qwen3.8-27B-BF16-SSMFIX, which in turn is derived from the official Qwen/Qwen3.8-27B.

At a glance

PropertyValue
Model familyQwen3.8
Parameter count27B dense model
Artifact formatGGUF V3
Quantization labelUD-Q3KXL
Quantization styleCustom mixed quantization with importance matrix
Effective size12,807.91 MiB, approximately 12.52 GiB
Reported rate3.93 BPW
Context inherited from upstream262,144 tokens; practical capacity depends on runtime and hardware
Primary runtimellama.cpp and compatible GGUF runtimes
Intended modality of this fileText inference

UD-Q3_K_XL is a quantization-tier name, not a claim that every tensor is stored as pure Q3_K. The exact mixed recipe is documented below and in quantization_recipe.txt.

Model lineage and attribution

text
Qwen/Qwen3.8-27B
        |
        v
redashes/Qwen3.8-27B-BF16-SSMFIX
        |
        v
Luis23333/Qwen3.8-27B-SSMFIX-UD-Q3_K_XL-GGUF

The direct source model describes itself as an independent verification of a community investigation into abnormal SSM/conv1d scale behavior. This GGUF preserves that repaired source lineage and then applies the quantization recipe described below. It should be treated as an experimental community artifact, not as an official correction to Qwen3.8.

What SSMFIX changes

The BF16 source model applies per-layer alpha rescaling to eight ssm_conv1d.weight tensors. The documented correction factors are:

LayerTensorAlpha
52blk.52.ssm_conv1d.weight0.59005
53blk.53.ssm_conv1d.weight0.55484
56blk.56.ssm_conv1d.weight0.54486
57blk.57.ssm_conv1d.weight0.53574
58blk.58.ssm_conv1d.weight0.60972
60blk.60.ssm_conv1d.weight0.48136
61blk.61.ssm_conv1d.weight0.65327
62blk.62.ssm_conv1d.weight0.61856

In the local quantization log, ssm_conv1d.weight tensors remain F32 in the GGUF conversion. The repair is therefore not deliberately quantized away by the recipe.

Quantization recipe

The model was quantized from a BF16 GGUF generated from the repaired source weights using llama.cpp build 9222 (9a532ae4b) and an importance matrix named imatrix_unsloth.gguf_file.

Tensor groupType
Default quantizationIQ3_S
Token embeddingsQ3_K
Output tensorQ5_K
attn_vQ5_K
Selected attention, FFN, SSM and MTP tensorsIQ4_XS
ssm_conv1d.weightF32

The exact tensor overrides are recorded in quantization_recipe.txt. The resulting file is a custom mixed quantization, not a pure single-type Q3_K file.

Important modality limitation

The upstream Qwen3.8 model is a vision-language model. This repository contains only the language-model GGUF produced by the conversion above. It does not include an mmproj/vision projector file, so this single artifact is documented and tested for text inference only. Use the upstream Transformers repository or a compatible model-plus-projector package when image or video input is required.

Usage with llama.cpp

Use a recent llama.cpp build with Qwen3.8/Qwen3.5 architecture support.

Interactive text chat

bash
llama-cli \
  -m Qwen3.8-27B-BF16-SSMFIX-UD-Q3_K_XL.gguf \
  --jinja \
  --reasoning on \
  -cnv

Disable thinking with --reasoning off when supported by your llama.cpp build.

HTTP server

bash
llama-server \
  -m Qwen3.8-27B-BF16-SSMFIX-UD-Q3_K_XL.gguf \
  --jinja \
  --reasoning auto \
  --ctx-size 16384 \
  --n-gpu-layers auto \
  --fit on \
  --flash-attn auto

The 262,144-token context length is inherited metadata, not a guarantee that a particular GPU can allocate that context. A 16 GiB GPU should start with a smaller context such as 16,384 and increase it only after measuring memory use.

The upstream Qwen recommendations are approximately:

  • —Thinking: temperature=1.0, top_p=0.95, top_k=20, min_p=0.0.
  • —Non-thinking: temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5.

Evaluation and local smoke tests

Reference results from the BF16 source

The following results belong to the direct BF16 source model, not to this GGUF. They are included only as provenance context and should not be interpreted as a GGUF quality benchmark.

MetricBF16 source v2
MT-Bench average7.47
IFEval prompt strict0.5194
IFEval instruction strict0.6343
GSM8K strict0.9644
CMMLU0.6996
TruthfulQA MC1 / MC20.3758 / 0.5513
TruthfulQA generation ROUGE-1 / ROUGE-2 / ROUGE-L / BLEU0.345 / 0.246 / 0.345 / 0.256

GGUF runtime smoke test

Local text-only smoke tests were run with llama.cpp build 9222 (9a532ae4b) on an NVIDIA RTX 5070 Ti, with context size 16,384, six prompts, three runs per prompt, and a maximum of 256 generated tokens.

ModeSuccessful requestsAverage elapsed timeAverage wall generation rate
Baseline18/186506.96 ms39.367 tokens/s
MTP218/1823098.24 ms11.180 tokens/s

These are runtime smoke-test measurements, not broad capability scores. In this local setup MTP2 was slower than baseline, so this repository does not claim that speculative decoding is faster for this artifact.

Limitations and disclaimer

  • —This is an experimental community conversion and is not an official Qwen release.
  • —The SSMFIX hypothesis and its claimed benefits are not guaranteed for every workload.
  • —The GGUF has not been assigned the BF16 source's quality scores.
  • —This upload contains no vision projector and is not presented as a single-file multimodal package.
  • —Long-context behavior depends on the runtime, KV-cache settings, available VRAM/RAM and prompt shape.
  • —Validate the model on your own workload before relying on it in production.

License

The model follows the Apache-2.0 license of the upstream Qwen release. See LICENSE. Please preserve the upstream attribution and the direct-source attribution when redistributing this derived artifact.