How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf richardyoung/Qwen3-14B-abliterated-GGUF:
# Run inference directly in the terminal:
llama-cli -hf richardyoung/Qwen3-14B-abliterated-GGUF:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf richardyoung/Qwen3-14B-abliterated-GGUF:
# Run inference directly in the terminal:
llama-cli -hf richardyoung/Qwen3-14B-abliterated-GGUF:
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf richardyoung/Qwen3-14B-abliterated-GGUF:
# Run inference directly in the terminal:
./llama-cli -hf richardyoung/Qwen3-14B-abliterated-GGUF:
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf richardyoung/Qwen3-14B-abliterated-GGUF:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf richardyoung/Qwen3-14B-abliterated-GGUF:
Use Docker
docker model run hf.co/richardyoung/Qwen3-14B-abliterated-GGUF:
Quick Links

Qwen3-14B Abliterated (GGUF)

An abliterated (uncensored) version of Qwen/Qwen3-14B in GGUF format for local inference.

Abliteration Results

Metric Value
Base Refusals 97/100
Abliterated Refusals 19/100
Refusal Reduction 80%
KL Divergence 0.98

Conservative abliteration preserves model coherence while significantly reducing refusals.

Quick Start

With Ollama

ollama run hf.co/richardyoung/Qwen3-14B-abliterated-GGUF

With llama.cpp

huggingface-cli download richardyoung/Qwen3-14B-abliterated-GGUF \
    --include "*Q4_K_M*" --local-dir ./models

./llama-cli -m ./models/*Q4_K_M*.gguf \
    -p "You are a helpful assistant." \
    --chat-template chatml -ngl 99

With Python (llama-cpp-python)

from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="richardyoung/Qwen3-14B-abliterated-GGUF",
    filename="*Q4_K_M*",
    n_gpu_layers=-1,
)

output = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Explain abliteration in simple terms."}]
)
print(output["choices"][0]["message"]["content"])

Available Quantizations

Quantization Use Case
Q4_K_M Recommended — good balance
Q5_K_M Higher quality
Q8_0 Maximum quality

What is Abliteration?

Abliteration removes the "refusal direction" from a model's residual stream — a surgical modification that disables safety refusals without retraining. See Refusal in Language Models Is Mediated by a Single Direction.

Intended Use

Research, creative writing, education on alignment techniques, and unrestricted local inference.

Other Models by richardyoung

Downloads last month
1,425
GGUF
Model size
15B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

3-bit

4-bit

5-bit

8-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 1 Ask for provider support

Model tree for richardyoung/Qwen3-14B-abliterated-GGUF

Finetuned
Qwen/Qwen3-14B
Quantized
(181)
this model

Collections including richardyoung/Qwen3-14B-abliterated-GGUF

Papers for richardyoung/Qwen3-14B-abliterated-GGUF