Views
No views yet
| Metric | Value |
|---|---|
| Base Refusals | 97/100 |
| Abliterated Refusals | 19/100 |
| Refusal Reduction | 80% |
| KL Divergence | 0.98 |
ollama run hf.co/richardyoung/Qwen3-14B-abliterated-GGUF1huggingface-cli download richardyoung/Qwen3-14B-abliterated-GGUF \
2 --include "*Q4_K_M*" --local-dir ./models
3
4./llama-cli -m ./models/*Q4_K_M*.gguf \
5 -p "You are a helpful assistant." \
6 --chat-template chatml -ngl 991from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="richardyoung/Qwen3-14B-abliterated-GGUF",
5 filename="*Q4_K_M*",
6 n_gpu_layers=-1,
7)
8
9output = llm.create_chat_completion(
10 messages=[{"role": "user", "content": "Explain abliteration in simple terms."}]
11)
12print(output["choices"][0]["message"]["content"])| Quantization | Use Case |
|---|---|
| Q4_K_M | Recommended — good balance |
| Q5_K_M | Higher quality |
| Q8_0 | Maximum quality |