Views
No views yet
qwen3_5_moe MoE (35B total, only ~3B active per token) — so it is fast — and it keeps vision (image input via the shared mmproj).
llama-quantize refuses ("the result will be garbage"). This model has 256 experts, top-8 routing — rarely-activated experts are easy to miss. We computed a fresh imatrix on the abliterated weights (bartowski calibration_datav3, -c 512 --parse-special, ~100% executed-tensor coverage, imatrix.gguf ships in this repo) and tuned the per-tensor mix so 2-bit doesn't collapse: ffn_down_exps pinned to iq3_xxs (the sensitive projection), output tensor q6_k, token embeddings q4_k.llama-bench on an L40S; on a 12 GB card (RTX 3060 class) tok/s is lower but still high thanks to the 3B active path.| File | Size | PPL | ΔPPL vs Q8_0 | Mean KLD | Same-top-p | HellaSwag (400) | Target cards |
|---|---|---|---|---|---|---|---|
| IQ2_M | 11.53 GB | 9.92 | +20.5 % | 0.320 | 75.8 % | 77.75 % (−3.0) | 12 GB (best quality, headless / ctx ≤4k with desktop) |
| IQ2_S | 10.88 GB | 10.25 | +24.5 % | 0.372 | 74.3 % | 76.25 % (−4.5) | 12 GB, comfortable + context headroom |
| IQ2_XXS | 9.02 GB | 12.34 | +49.9 % | 0.593 | 68.2 % | 71.75 % (−9.0) | 8–10 GB — usable, clearly degraded |
| Q8_0 (reference) | 34.4 GB | 8.23 | — | — | — | 80.75 % | not in this repo |

IQ2_S trades a little quality for context/desktop headroom; IQ2_XXS exists so 8–10 GB cards can run it at all (visibly degraded).1# llama.cpp — text
2llama-server -hf cognitivers/Ornith-1.5-35B-A3B-Abliterated-12GB-GGUF:IQ2_M \
3 -ngl 999 -c 8192 -fa on -ctk q8_0 -ctv q8_0
4
5# Ollama
6ollama run hf.co/cognitivers/Ornith-1.5-35B-A3B-Abliterated-12GB-GGUF:IQ2_Mmmproj-Ornith-1.5-35B-A3B-Abliterated-F16.gguf (~0.9 GB extra VRAM), then:1llama-mtmd-cli -m Ornith-1.5-35B-A3B-Abliterated-IQ2_M.gguf \
2 --mmproj mmproj-Ornith-1.5-35B-A3B-Abliterated-F16.gguf \
3 --image photo.jpg -p "Describe this image." -ngl 999Q8_0 from PocketAiHub/Ornith-1.5-35B-A3B-Abliterated-GGUF (Q8_0 ≈ lossless; requantized with --allow-requantize). Original model: ornith-ai/Ornith-1.5-35B-A3B; refusal-direction edit by PocketAI Model Lab.imatrix.gguf in this repo — computed by us on the abliterated weights (llama.cpp, calibration_datav3, -c 512 -b 512 --parse-special).llama-quantize: base type + --tensor-type ffn_down_exps=iq3_xxs --output-tensor-type q6_k --token-embedding-type q4_k --imatrix imatrix.gguf.calibration_datav3.