Qwen3.6-35B-A3B Q6_K Model Explained | Generated by AI
Question: What’s the mradermacher/Qwen3.6-35B-A3B Q6_K model?
Answer:
mradermacher/Qwen3.6-35B-A3B-Q6_K is a GGUF quantized version of Alibaba’s Qwen3.6-35B-A3B model, made for local inference with tools like llama.cpp, LM Studio, Ollama, etc. (Hugging Face)
Breakdown:
Qwen3.6-35B-A3B
│ │ │
│ │ └── A3B = 3B active parameters
│ └────── 35B total parameters
└────────────── model family
1. 35B-A3B = MoE model
It is not a normal dense 35B model.
It is a Mixture-of-Experts (MoE):
Total parameters:
35 billion
Per token activated:
~3 billion
Inference compute:
closer to a 3B model
Memory:
closer to a 35B model
The router selects experts:
token
|
router
|
+---------+
| expert1 |
| expert2 | <-- active experts
| expert3 |
+---------+
|
FFN output
|
next layer
So you get much higher intelligence per FLOP compared with a dense 7B/14B model. Qwen describes it as a 35B total / 3B active MoE model designed for coding, reasoning, multimodal tasks, and long context. (Qwen Studio)
2. Q6_K means 6-bit quantization
Original FP16:
35B params × 2 bytes
≈ 70 GB VRAM
Q6_K:
35B params × ~0.75 bytes
≈ 28.6 GB model file
The mradermacher GGUF release lists:
Q6_K:
size: ~28.6 GB
quality: very good
Comparison:
| Quant | Size | Quality |
|---|---|---|
| Q4_K_M | ~21 GB | good |
| Q5_K_M | ~25 GB | very good |
| Q6_K | ~29 GB | excellent |
| Q8_0 | ~37 GB | near FP16 |
3. Hardware requirement
For pure GPU:
Q6_K model:
~29 GB VRAM
+ KV cache
+ runtime overhead
Practical:
- RTX 3090 24GB ❌ (needs RAM offload)
- RTX 4090 24GB ❌ (same)
- RTX 6000 Ada 48GB ✅
- A6000 48GB ✅
- MI300X 192GB ✅
- Mac with 64GB unified memory ✅
For a 24GB card:
llama-server \
-m Qwen3.6-35B-A3B-Q6_K.gguf \
--n-gpu-layers 60
will offload some layers to CPU RAM.
4. Why this model is interesting
The sweet spot:
Qwen3.6-35B-A3B-Q6_K
Intelligence:
~large model class
Active compute:
~3B
Memory:
~29GB
Speed:
much faster than dense 35B
For agents:
Claude Code style workflow
|
v
Qwen3.6-35B-A3B-Q6_K
|
+-- coding
+-- tool calls
+-- long context
+-- planning
This is exactly the kind of model where MoE shines: frontier-ish capability without frontier inference cost. Community testing also reports Q6_K as a practical choice for local agentic coding when you have enough RAM/VRAM. (Reddit)
For your hardware:
- RTX 4070 12GB → impossible locally except heavy CPU offload (slow)
- RTX 3090 24GB → Q4/Q5 better
- MI300X 192GB → this model is trivial, you can run many concurrent copies
A nice AMD ROCm test would be:
MI300X
|
llama.cpp ROCm
|
Qwen3.6-35B-A3B-Q6_K
|
OpenAI-compatible API
|
agents / coding benchmark
This model is basically one of the better “local AI agent brain” candidates right now. (Qwen Studio)
References:
- (Hugging Face)
- (Qwen Studio)
- (Reddit)
