Views
No views yet
Join the Discord for updates, roadmaps, projects, or just to chat.
Not sure which variant to pick? 99.9%+ of users should use Balanced — same 0/465 refusal rate, more stable sampling, great for agentic coding / tool-use / reasoning / creative writing. Pick Aggressive only if you specifically want the model to skip its preamble on hardcore prompts.
HuggingFace's "Hardware Compatibility" widget doesn't recognize K_P quants — it may show fewer files than actually exist. Click "View +X variants" or go to Files and versions to see all available downloads.
| Balanced (recommended default) | Aggressive (this release) | |
|---|---|---|
| Refusal rate | 0/465 | 0/465 |
| On hardcore prompts | reasons out loud, occasional short disclaimer, then full answer | delivers the raw answer directly, no preamble |
| Best for | agentic coding, tool-use, reasoning, creative writing/RP | users who specifically want the model to skip the "talk itself into it" step |
| File | Quant | BPW | Size |
|---|---|---|---|
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q8_K_P.gguf | Q8_K_P | 10.06 | 32 GB |
| — | Q8_0 | 8.5 | — |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q6_K_P.gguf | Q6_K_P | 7.07 | 23 GB |
| — | Q6_K | 6.6 | — |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q5_K_P.gguf | Q5_K_P | 6.47 | 21 GB |
| — | Q5_K_M | 5.7 | — |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf | Q4_K_P | 5.4 | 18 GB |
| — | Q4_K_M | 4.88 | — |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-IQ4_XS.gguf | IQ4_XS | 4.32 | 15 GB |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q3_K_P.gguf | Q3_K_P | 4.39 | 14 GB |
| — | Q3_K_M | 3.9 | — |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-IQ3_M.gguf | IQ3_M | 3.56 | 13 GB |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-IQ3_XS.gguf | IQ3_XS | 3.3 | 12 GB |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q2_K_P.gguf | Q2_K_P | 3.19 | 12 GB |
| Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-IQ2_M.gguf | IQ2_M | 2.69 | 10 GB |
| mmproj-Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-f16.gguf | mmproj (f16) | — | 928 MB |
16 × (3 × (Gated DeltaNet → FFN) → 1 × (Gated Attention → FFN))temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0presence_penalty=1.5 even in thinking mode. Both values work, but with the official 0.0 it can think a lot more than it needs to. Bumping it to 1.5 reins that in without hurting output quality. Your call — try both.--jinja with llama.cpp for proper chat template handlingmmproj file alongside the main GGUFrope_parameters if you actually need >262K contextHeads up: Qwen3.6 does not support the/thinkand/no_thinksoft switches that Qwen3 had. You must use the chat-template kwarg below.
enable_thinking to false in the template kwargs1llama-server -m Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf \
2 --mmproj mmproj-Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-f16.gguf \
3 --jinja -c 131072 -ngl 99 \
4 --chat-template-kwargs '{"enable_thinking": false}'1{
2 "model": "qwen3.6-27b",
3 "messages": [{"role": "user", "content": "..."}],
4 "chat_template_kwargs": {"enable_thinking": false}
5}openai SDK:1client.chat.completions.create(
2 model="qwen3.6-27b",
3 messages=[{"role": "user", "content": "..."}],
4 extra_body={"chat_template_kwargs": {"enable_thinking": False}},
5){"chat_template_kwargs": {"preserve_thinking": true}}1llama-cli -m Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf \
2 --mmproj mmproj-Qwen3.6-27B-Uncensored-HauhauCS-Aggressive-f16.gguf \
3 --jinja -c 131072 -ngl 99