2,370 Downloads Updated 1 month ago
ollama run richardyoung/qwen2.5-7b-instruct-abliterated:q8_0
Updated 7 months ago
7 months ago
300df0426c22 · 8.1GB ·
An abliterated (uncensored) build of Qwen2.5-7B-Instruct with reduced refusal behavior and preserved general capability.
This is an abliterated version of Qwen/Qwen2.5-7B-Instruct, Alibaba’s instruction-tuned 7.6B-parameter language model. Abliteration was performed with Heretic, an automated tool that suppresses the directions in activation space most associated with refusals.
The goal of this build is a conservative abliteration: it meaningfully reduces unwarranted refusals while doing as little damage as possible to the base model’s reasoning, coding, and multilingual abilities. The model is distributed as multiple GGUF quantizations for use with Ollama and llama.cpp.
| Metric | Original | Abliterated |
|---|---|---|
| Refusals (harmful prompts) | TBD | TBD |
| Refusals (harmless prompts) | TBD | TBD |
| KL divergence from base | , | TBD |
Refusal metrics pending re-measurement.
| Tag | Quantization | Size |
|---|---|---|
Q4_K_M |
4-bit (K-quant, medium) | 4.7 GB |
Q5_K_M |
5-bit (K-quant, medium) | 5.4 GB |
q8_0 |
8-bit | 8.1 GB |
Approximate bits-per-weight for common GGUF quant levels (✅ = published for this model):
| Quant | ~BPW | Published |
|---|---|---|
| IQ3_M | 3.66 | , |
| IQ4_XS | 4.25 | , |
| Q4_K_M | 4.85 | ✅ |
| Q5_K_M | 5.68 | ✅ |
| Q6_K | 6.56 | , |
| Q8_0 | 8.50 | ✅ |
Higher BPW means higher fidelity to the original weights at the cost of size and memory. Q4_K_M is the recommended starting point for most users; Q5_K_M offers a quality bump, and q8_0 is near-lossless.
Run the model directly with Ollama:
ollama run richardyoung/qwen2.5-7b-instruct-abliterated
Pull a specific quantization:
ollama pull richardyoung/qwen2.5-7b-instruct-abliterated:Q5_K_M
Use it from the API:
curl http://localhost:11434/api/chat -d '{
"model": "richardyoung/qwen2.5-7b-instruct-abliterated",
"messages": [{ "role": "user", "content": "Explain abliteration in one paragraph." }]
}'
Approximate VRAM / unified-memory needed to run this ~7.6B model (weights only; add headroom for context):
| Quantization | Size | Recommended VRAM |
|---|---|---|
Q4_K_M |
4.7 GB | 6 GB+ |
Q5_K_M |
5.4 GB | 8 GB+ |
q8_0 |
8.1 GB | 10 GB+ |
CPU-only inference is possible but slower; 16 GB of system RAM is a comfortable minimum, and the long-context (YaRN) modes require additional memory for the KV cache.
This model has had its built-in refusal guardrails substantially reduced through abliteration. It will comply with a much wider range of requests than the original instruct model, including some the base model would refuse. You are solely responsible for how you use it. Use it responsibly and lawfully, comply with all applicable laws and the base model’s license, and do not deploy it to produce harmful, illegal, or abusive content.
Built & maintained by Richard Young · DeepNeuro