GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE β†’
Model Intelligence Sheet

Krasnopjorovs/Qwen3.6-35B-A3B-Imatrix-GGUF overview

πŸ‹ Qwen3.6 35B A3B β€” Imatrix GGUF Verified quants only. Sub 4 bit variants are excluded from this release because they produce degenerate output at this bit ra…

ggufimatrixllama.cppquantizedverifiedqwenqwen3.6moetext-generationbase_model:Qwen/Qwen3.6-35B-A3Bbase_model:finetune:Qwen/Qwen3.6-35B-A3Blicense:apache-2.0region:us
Downloads
0
Likes
0
Pipeline
text-generation

Repository Files & Downloads

0 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Browse files on Hugging Face

Model Details

Model IDKrasnopjorovs/Qwen3.6-35B-A3B-Imatrix-GGUF
AuthorKrasnopjorovs
Pipelinetext-generation
Licenseapache-2.0
Base modelQwen/Qwen3.6-35B-A3B
Last modified2026-06-10T23:35:00.000Z

Model README

---

license: apache-2.0

base_model: Qwen/Qwen3.6-35B-A3B

tags:

- gguf

- imatrix

- llama.cpp

- quantized

- verified

- qwen

- qwen3.6

- moe

pipeline_tag: text-generation

---

πŸ‹ Qwen3.6-35B-A3B β€” Imatrix GGUF

Verified quants only. Sub-4-bit variants are excluded from this release because they produce degenerate output at this bit-rate β€” no point shipping broken files.

GGUF imatrix builds of Qwen/Qwen3.6-35B-A3B β€” a Mixture-of-Experts model with 35B total parameters but only ~3B active per token, plus hybrid attention/state-space (SSM) layers. Flagship-level reasoning, coding and multilingual RAG at small-model speeds.

Built with llama.cpp and importance-matrix calibration on a public multilingual + code + math corpus. Every quant is loaded, prompted, and visually checked before publication.

πŸ‘‹ From the author

Hi local LLM enthusiasts! You may have noticed a few one-off quants from me over the past months. This release comes from a fully automated pipeline β€” same as my Gemma 4 line.

Please try them out and let me know which quants are useful or which ones you wish I'd made. Anything below 4-bit produces degraded output on this architecture, so I'm holding off on those until they actually work well. More quants and more models coming.

🎯 Pick a quant

| Quant | Size | What it's for |

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

| Q8_0 | 34G | Almost the original. Pick this if RAM isn't a concern. |

| Q6_K_L | 27G | Near-lossless with Q8_0 embeddings. Best of the K-quants. |

| Q6_K | 27G | Near-lossless. Excellent fidelity at a smaller size than Q8_0. |

| Q5_K_L | 23G | Q5_K_M with Q8_0 embeddings. High quality, small overhead. |

| Q5_K_M | 23G | Sweet spot between Q4 and Q6. Solid all-rounder. |

| Q5_K_S | 22G | Slightly smaller than Q5_K_M, virtually identical output. |

| Q4_K_L | 20G | Q4_K_M with Q8_0 embeddings. The smart 4-bit choice. |

| Q4_K_M | 20G | The default. Best size/quality tradeoff. |

| Q4_K_S | 19G | A bit smaller than Q4_K_M, a tiny step down. |

| IQ4_NL | 20G | ARM-optimized 4-bit. For Raspberry Pi & friends. |

| IQ4_XS | 18G | Tightest 4-bit format. Quality close to Q4_K_S, smaller. |

_L variants override the output tensor and embeddings to Q8_0 β€” small disk cost, better output stability.*

Tl;dr:

  • 🟒 Q4_K_M β€” start here unless you have a reason not to
  • 🟑 Q5_K_M β€” small quality bump if you have RAM to spare
  • πŸ”΅ Q8_0 β€” pick this if you're not RAM-constrained and want max quality
  • 🟠 IQ4_XS β€” when 4-bit is too big
  • 🟣 IQ4_NL β€” running on ARM (Pi, phones)

🎯 Use cases tested

This release has been verified against real workloads, not just a smoke prompt:

  • Cross-language RAG (EN ↔ RU) β€” bridging English data-center / infrastructure documentation with Russian situational queries, retrieval grounding preserved across languages.
  • Algorithmic coding β€” generating O(N)-complexity Python without regex, while strictly following constraint rules.
  • Strict formatting β€” emitting pure, valid JSON without markdown wrappers or conversational filler.

πŸ’¬ Prompt format

ChatML:

<|im_start|>system
{system}<|im_end|>
<|im_start|>user
{prompt}<|im_end|>
<|im_start|>assistant

πŸ“₯ Download

Single file (recommended):

hf download Krasnopjorovs/Qwen3.6-35B-A3B-Imatrix-GGUF \
  --include "Qwen3.6-35B-A3B-Q4_K_M.gguf" --local-dir .

Whole repo:

hf download Krasnopjorovs/Qwen3.6-35B-A3B-Imatrix-GGUF --local-dir ./qwen3.6-35b-a3b-gguf

β–Ά Run

./llama-server \
  -m Qwen3.6-35B-A3B-Q4_K_M.gguf \
  -c 32768 -ngl 99 \
  --host 0.0.0.0 --port 8080

Then point your favorite chat client at http://localhost:8080/v1.

MoE with only ~3B active parameters means generation is fast even when the full weights are large β€” a 4-bit build fits comfortably on a 24 GB GPU with room for a long context window.

πŸ”¬ Calibration

Imatrix generated from reapmix β€” a community calibration mix (multilingual + code + math, ~305K words / ~4.4 MB). Same class of public calibration data used by other community publishers; this release makes no unique calibration claim.

The output tensor and embeddings carry disproportionate weight in quantized output. The *_L variants keep these at Q8_0 β€” small disk cost for noticeably better stability at low bit-rates.

βœ… Build info

  • Source: Qwen/Qwen3.6-35B-A3B
  • Architecture: qwen35moe (MoE + hybrid SSM/attention)
  • llama.cpp: latest mainline
  • Quantization: CPU
  • Imatrix calibration: GPU
  • Quant whitelist: 4-bit and above only

πŸ™ Credits

  • Source model β€” Qwen (Apache 2.0)
  • Calibration corpus β€” reapmix by eaddario
  • Quantization tooling β€” llama.cpp

---

built Β· Β© 2026 Krasnopjorovs

Run Krasnopjorovs/Qwen3.6-35B-A3B-Imatrix-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