Views
No views yet

llama.cpp, Ollama, LM Studio, Jan, and KoboldCpp.
RootMonsteR/Qwen3-14B-Abliterated — a Heretic v1.3.0 abliteration of Qwen/Qwen3-14B that removes ~90% of refusals (10/100 vs 99/100) at an exceptionally low KL divergence of 0.0333, tuned for autonomous agents, tool-use, and authorized security work._K_M variants:
| File | Quant | Size | Bits/weight | Best for |
|---|---|---|---|---|
qwen3-14b-abliterated-Q5_K_M.gguf | Q5_K_M ⭐ | 10.5 GB | ~5.5 | Tool-using agents — best JSON/format fidelity |
qwen3-14b-abliterated-Q4_K_M.gguf | Q4_K_M | 9.0 GB | 4.87 | Smallest footprint, most accessible |
Exact byte sizes and SHA-256 hashes are listed inSHA256SUMSand on the repo's Files tab.
VRAM / RAM budget -> pick
≥ 12 GB -> Q5_K_M (recommended — agents & tool-use)
8–10 GB -> Q4_K_M (smallest; watch tool-call JSON under heavy load)1# Chat
2llama-cli -hf RootMonsteR/Qwen3-14B-Abliterated-GGUF:Q5_K_M \
3 -p "Explain the CVE-2021-44228 (Log4Shell) exploitation chain in technical depth." \
4 --temp 0.6 --top-p 0.95 --top-k 20 --min-p 0
5
6# OpenAI-compatible server (tool-calling + reasoning)
7llama-server -hf RootMonsteR/Qwen3-14B-Abliterated-GGUF:Q5_K_M \
8 --jinja --reasoning-format deepseek -c 32768llama-cli -m qwen3-14b-abliterated-Q5_K_M.gguf ...--jinjaenables the embedded Qwen3 chat template (Hermes-style<tools>block +<think>reasoning), so tool-calling works out of the box.
1# Straight from the Hub
2ollama run hf.co/RootMonsteR/Qwen3-14B-Abliterated-GGUF:Q5_K_MModelfile:ollama create qwen3-14b-abliterated -f Modelfile && ollama run qwen3-14b-abliteratedRootMonsteR/Qwen3-14B-Abliterated-GGUF and pick Q5_K_M or Q4_K_M, or drop the .gguf into your models folder. The Qwen3 chat template is embedded in the file, so reasoning and tool-calling are detected automatically.[!IMPORTANT] Never use greedy decoding — Qwen3 falls into repetition loops. Always sample.
| Mode | temperature | top_p | top_k | min_p |
|---|---|---|---|---|
| Thinking (default) | 0.6 | 0.95 | 20 | 0 |
| Non-thinking | 0.7 | 0.8 | 20 | 0 |
/think and /no_think in your message (thinking mode on by default).repeat_penalty (~1.05) or presence_penalty 0.5–1.5.[!WARNING] Responsible use. Removing refusals shifts all responsibility to you. Operate within applicable law, contractual obligations, and engagement scope (written authorization for any testing against systems you don't own). Provided as-is, without warranty. Full intended-use and responsible-use terms are in the source model card.
RootMonsteR/Qwen3-14B-Abliterated — selected Heretic trial 33, KL 0.0333, refusals 10/100.llama.cpp (convert_hf_to_gguf.py → llama-quantize) from the bf16 safetensors. No imatrix; standard Q5_K_M / Q4_K_M.reproduce/.Work with us — custom abliterated / fine-tuned models, red-team tooling, and sovereign on-prem AI. → jafsystems.net · rnd.sh · DM @RootMonsteR
1@misc{rootmonster2026qwen3_14b_abliterated,
2 title = {Qwen3-14B Abliterated: A Decensored Variant for Security Research and Autonomous Agents},
3 author = {RootMonsteR},
4 year = {2026},
5 url = {https://huggingface.co/RootMonsteR/Qwen3-14B-Abliterated},
6 note = {Produced with Heretic v1.3.0; base model: Qwen/Qwen3-14B; selected trial 33. GGUF quants Q5_K_M / Q4_K_M.},
7}