Views
No views yet
Q2_K
while keeping the GPU-resident tensors at Q4_K.TL;DR: an ~18 GB file that runs a Claude-Sonnet-class agentic model (AgentWorldBench 56.4) at full 256K context, at small-context speed — the daily driver for browser/tool/OS agent loops.
qwen35moe architecture (gated attention<think> before acting — and scores
56.4 on AgentWorldBench, roughly Claude-Sonnet-class on agentic tasks.Qwen3_5MoeForConditionalGeneration, which llama.cpp's
converter doesn't handle directly).ffn_*_exps on blocks 13–26 → Q2_K with importance matrix (the CPU-offloaded set)Q4_K · output-class → Q6_KQ2_K while GPU-resident tensors keep Q4_K
quality. See the Gordon card
for the full rationale.| profile | ctx | decode |
|---|---|---|
this file, -ot CPU-offload | 262144 | ~79 tok/s |
| DevQuasar Q8_0, ncmoe 26 | 65536 | ~32 tok/s |
1./llama-server -m Qwen-AgentWorld-35B-A3B-mixed-q2k.gguf \
2 --jinja --cache-type-k q4_0 --cache-type-v q4_0 --flash-attn on \
3 --ctx-size 262144 --parallel 1 --n-gpu-layers 99 --ctx-checkpoints 8 \
4 -ot 'blk\.(1[3-9]|2[0-6])\.ffn_(up|gate|down)_exps\.weight=CPU' \
5 --tensor-split 44,56 --ubatch-size 256 \
6 --temp 0.6 --top-p 0.95 --top-k 20 \
7 --no-mmap --threads 8 --no-warmup<think> environment-state reasoning is the point of
this model. Give it generous max_tokens.temp 0.6, top-p 0.95, top-k 20.--ctx-checkpoints 8 caps ik's dynamic SSM checkpoints (default 32 × 64 MiB ≈ 2 GB at
deep context — an OOM trap on long agent sessions).