empero-ai/Qwen3.8-35B-A3B-Distill-GGUF

Model

Qwen3.8-35B-A3B — GGUF

107

7 commits

1 linked in READMEs

updated Sep 16, 2026

See the code
conversational
distillation
empero-ai
endpoints_compatible
gated-deltanet
gguf
llama.cpp
quantized
qwen3.6
qwen3.8
reasoning
text-generation

README

Qwen3.8-35B-A3B — GGUF

Developed by Empero

GGUF quantizations of empero-ai/Qwen3.8-35B-A3B-Distill — a distillation of the Qwen3.8 frontier models into the Qwen3.6-35B-A3B Mixture-of-Experts architecture — for llama.cpp, Ollama, LM Studio, Jan, KoboldCpp, and other stock GGUF runtimes.

This card is about choosing a file and running it. The capability writeup, benchmark results, and best practices live on the main model card.

35B total parameters with ~3B active per token — the MoE sparsity means it runs considerably faster than a dense 35B at the same quant, but the whole weight file still has to fit in RAM or VRAM.

[!Note] Qwen3.6-class models are hybrids: 30 Gated DeltaNet layers and 10 full-attention layers, with 256 experts routed 8-per-token. A recent llama.cpp build with Qwen3.6 / Gated DeltaNet MoE support is required — older builds will fail to load the architecture.

Files

FileQuantSizeNotes
Qwen3.8-35B-A3B-IQ2_M.ggufIQ2_M12.558 GBSmallest usable. Fits a 16 GB card.
Qwen3.8-35B-A3B-Q2_K.ggufQ2_K13.839 GB2-bit K-quant; widest runtime support at this size.
Qwen3.8-35B-A3B-IQ3_M.ggufIQ3_M16.340 GBStrong quality per byte at 3-bit.
Qwen3.8-35B-A3B-Q3_K_M.ggufQ3_K_M17.664 GBConventional 3-bit K-quant.
Qwen3.8-35B-A3B-IQ4_XS.ggufIQ4_XS19.628 GBNear Q4_K_M quality, ~2 GB smaller.
Qwen3.8-35B-A3B-Q4_K_M.ggufQ4_K_M21.713 GBRecommended. Best quality/size balance for most users.
Qwen3.8-35B-A3B-Q5_K_M.ggufQ5_K_M25.348 GBHigher quality, modest size increase.
Qwen3.8-35B-A3B-Q6_K.ggufQ6_K29.209 GBNear-lossless.
Qwen3.8-35B-A3B-Q8_0.ggufQ8_037.802 GBHighest-quality quantization.
Qwen3.8-35B-A3B-BF16.ggufBF1671.067 GBFull precision reference.
mmproj-Qwen3.8-35B-A3B-F16.ggufF160.899 GBVision projector. Pair with any text quant above for image input.

The IQ* quants and the 2/3-bit K-quants are calibrated with an importance matrix, which is what keeps them coherent at these bit-widths.

Sizes are exact decimal GB from the uploaded files (1 GB = 1,000,000,000 bytes).

What fits?

Weight-size guidance at modest context. The KV cache is the dominant cost at long context and may require offload regardless of weight quant:

QuantGuidance
IQ2_M / Q2_K16 GB VRAM, or 16 GB system RAM. The smallest that stay coherent.
IQ3_M / Q3_K_M20-24 GB VRAM, or 24 GB system RAM.
IQ4_XS / Q4_K_M24 GB VRAM for a full GPU load; comfortable on CPU with 32 GB RAM.
Q5_K_M / Q6_K32 GB VRAM, or 48 GB system RAM.
Q8_048 GB VRAM, or 64 GB system RAM.
BF1680 GB+ VRAM, or 96 GB system RAM. Reference only.

Because only ~3B parameters are active per token, CPU and partial-offload inference are far more practical here than for a dense model of the same file size.

Usage

llama.cpp

llama-cli -m Qwen3.8-35B-A3B-Q4_K_M.gguf \
  --temp 0.6 --top-p 0.95 --top-k 20 \
  -n 16384 -cnv

Use the built-in chat template (-cnv). The model is a reasoning model: every answer opens with a <think> block, so allow a generous -n and strip the <think>...</think> span for end users.

Vision

Pair the projector with any text quant:

llama-mtmd-cli -m Qwen3.8-35B-A3B-Q4_K_M.gguf \
  --mmproj mmproj-Qwen3.8-35B-A3B-F16.gguf \
  --image photo.jpg -p "Describe this image."

The vision tower is inherited unchanged from the Qwen3.6-35B-A3B base — the distillation was text-only and vision behaviour was not evaluated.

Ollama / LM Studio / Jan / KoboldCpp

Download the GGUF of your choice and load it directly; the chat template is embedded in the file. Recommended sampling: temperature=0.6, top_p=0.95, top_k=20.

Verifying downloads

SHA256SUMS in this repo lists checksums for every GGUF:

sha256sum -c SHA256SUMS --ignore-missing

Provenance & licensing

Quantizations of empero-ai/Qwen3.8-35B-A3B-Distill, a distillation of the Qwen3.8 frontier models into Qwen/Qwen3.6-35B-A3B. Weights are Apache-2.0, inherited from the Qwen base, shared as-is.

Stay in the loop

Sign up for the Empero newsletter at empero.org for releases, evals, and research notes.

Support / Donate

If this model helped you, consider supporting the project:

  • BTC: bc1qx6zepu6sfkvshgdmc4ewu6pk6rpadvpgffpp7v
  • LTC: ltc1qv2mefzps2vtjcpwfx8xxdrpplrcvltswm68r7x

Acknowledgements

Contributors

empero-ai

7 commits

empero-ai/Qwen3.8-35B-A3B-Distill-GGUF

Model

Qwen3.8-35B-A3B — GGUF

107

7 commits

1 linked in READMEs

updated Sep 16, 2026

See the code
conversational
distillation
empero-ai
endpoints_compatible
gated-deltanet
gguf
llama.cpp
quantized
qwen3.6
qwen3.8
reasoning
text-generation

README

Qwen3.8-35B-A3B — GGUF

Developed by Empero

GGUF quantizations of empero-ai/Qwen3.8-35B-A3B-Distill — a distillation of the Qwen3.8 frontier models into the Qwen3.6-35B-A3B Mixture-of-Experts architecture — for llama.cpp, Ollama, LM Studio, Jan, KoboldCpp, and other stock GGUF runtimes.

This card is about choosing a file and running it. The capability writeup, benchmark results, and best practices live on the main model card.

35B total parameters with ~3B active per token — the MoE sparsity means it runs considerably faster than a dense 35B at the same quant, but the whole weight file still has to fit in RAM or VRAM.

[!Note] Qwen3.6-class models are hybrids: 30 Gated DeltaNet layers and 10 full-attention layers, with 256 experts routed 8-per-token. A recent llama.cpp build with Qwen3.6 / Gated DeltaNet MoE support is required — older builds will fail to load the architecture.

Files

FileQuantSizeNotes
Qwen3.8-35B-A3B-IQ2_M.ggufIQ2_M12.558 GBSmallest usable. Fits a 16 GB card.
Qwen3.8-35B-A3B-Q2_K.ggufQ2_K13.839 GB2-bit K-quant; widest runtime support at this size.
Qwen3.8-35B-A3B-IQ3_M.ggufIQ3_M16.340 GBStrong quality per byte at 3-bit.
Qwen3.8-35B-A3B-Q3_K_M.ggufQ3_K_M17.664 GBConventional 3-bit K-quant.
Qwen3.8-35B-A3B-IQ4_XS.ggufIQ4_XS19.628 GBNear Q4_K_M quality, ~2 GB smaller.
Qwen3.8-35B-A3B-Q4_K_M.ggufQ4_K_M21.713 GBRecommended. Best quality/size balance for most users.
Qwen3.8-35B-A3B-Q5_K_M.ggufQ5_K_M25.348 GBHigher quality, modest size increase.
Qwen3.8-35B-A3B-Q6_K.ggufQ6_K29.209 GBNear-lossless.
Qwen3.8-35B-A3B-Q8_0.ggufQ8_037.802 GBHighest-quality quantization.
Qwen3.8-35B-A3B-BF16.ggufBF1671.067 GBFull precision reference.
mmproj-Qwen3.8-35B-A3B-F16.ggufF160.899 GBVision projector. Pair with any text quant above for image input.

The IQ* quants and the 2/3-bit K-quants are calibrated with an importance matrix, which is what keeps them coherent at these bit-widths.

Sizes are exact decimal GB from the uploaded files (1 GB = 1,000,000,000 bytes).

What fits?

Weight-size guidance at modest context. The KV cache is the dominant cost at long context and may require offload regardless of weight quant:

QuantGuidance
IQ2_M / Q2_K16 GB VRAM, or 16 GB system RAM. The smallest that stay coherent.
IQ3_M / Q3_K_M20-24 GB VRAM, or 24 GB system RAM.
IQ4_XS / Q4_K_M24 GB VRAM for a full GPU load; comfortable on CPU with 32 GB RAM.
Q5_K_M / Q6_K32 GB VRAM, or 48 GB system RAM.
Q8_048 GB VRAM, or 64 GB system RAM.
BF1680 GB+ VRAM, or 96 GB system RAM. Reference only.

Because only ~3B parameters are active per token, CPU and partial-offload inference are far more practical here than for a dense model of the same file size.

Usage

llama.cpp

llama-cli -m Qwen3.8-35B-A3B-Q4_K_M.gguf \
  --temp 0.6 --top-p 0.95 --top-k 20 \
  -n 16384 -cnv

Use the built-in chat template (-cnv). The model is a reasoning model: every answer opens with a <think> block, so allow a generous -n and strip the <think>...</think> span for end users.

Vision

Pair the projector with any text quant:

llama-mtmd-cli -m Qwen3.8-35B-A3B-Q4_K_M.gguf \
  --mmproj mmproj-Qwen3.8-35B-A3B-F16.gguf \
  --image photo.jpg -p "Describe this image."

The vision tower is inherited unchanged from the Qwen3.6-35B-A3B base — the distillation was text-only and vision behaviour was not evaluated.

Ollama / LM Studio / Jan / KoboldCpp

Download the GGUF of your choice and load it directly; the chat template is embedded in the file. Recommended sampling: temperature=0.6, top_p=0.95, top_k=20.

Verifying downloads

SHA256SUMS in this repo lists checksums for every GGUF:

sha256sum -c SHA256SUMS --ignore-missing

Provenance & licensing

Quantizations of empero-ai/Qwen3.8-35B-A3B-Distill, a distillation of the Qwen3.8 frontier models into Qwen/Qwen3.6-35B-A3B. Weights are Apache-2.0, inherited from the Qwen base, shared as-is.

Stay in the loop

Sign up for the Empero newsletter at empero.org for releases, evals, and research notes.

Support / Donate

If this model helped you, consider supporting the project:

  • BTC: bc1qx6zepu6sfkvshgdmc4ewu6pk6rpadvpgffpp7v
  • LTC: ltc1qv2mefzps2vtjcpwfx8xxdrpplrcvltswm68r7x

Acknowledgements

Contributors

empero-ai

7 commits