755 Downloads Updated 1 month ago
ollama run richardyoung/llama-3.1-8b-instruct-abliterated
An uncensored, abliterated build of Meta’s Llama 3.1 8B Instruct. Abliteration surgically removes the model’s learned refusal direction while preserving its general capabilities, so the model follows instructions without injecting safety-driven refusals.
llama-3.1-8b-instruct-abliterated is a decensored variant of meta-llama/Llama-3.1-8B-Instruct. It was produced with Heretic, an automated abliteration tool that identifies and removes the refusal direction from a model’s residual stream. The result is a model that retains the strong multilingual reasoning and instruction-following of Llama 3.1 while declining far fewer requests.
| Metric | Original | Abliterated |
|---|---|---|
| Refusals (/100 harmful prompts) | TBD | TBD |
| KL divergence from original | , | TBD |
Refusal metrics pending re-measurement.
ollama run command.| Tag | Size | BPW | Notes |
|---|---|---|---|
Q4_K_M |
4.9GB | 4.85 | Recommended balance of quality and size |
| Quant | BPW | Notes |
|---|---|---|
| IQ3_M | 3.66 | Smallest, lowest quality |
| IQ4_XS | 4.25 | Compact, good quality |
| Q4_K_M | 4.85 | Recommended default |
| Q5_K_M | 5.68 | Higher quality |
| Q6_K | 6.56 | Near-lossless |
| Q8_0 | 8.5 | Highest quality |
ollama run richardyoung/llama-3.1-8b-instruct-abliterated
curl http://localhost:11434/api/chat -d '{
"model": "richardyoung/llama-3.1-8b-instruct-abliterated",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'
import ollama
response = ollama.chat(
model="richardyoung/llama-3.1-8b-instruct-abliterated",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response["message"]["content"])
import ollama from "ollama";
const response = await ollama.chat({
model: "richardyoung/llama-3.1-8b-instruct-abliterated",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.message.content);
| VRAM | Performance |
|---|---|
| 6GB | Runs Q4_K_M with reduced context |
| 8GB | Comfortable for Q4_K_M at moderate context |
| 12GB+ | Full 128K context and higher throughput |
CPU-only inference is possible but significantly slower; roughly 8GB of free system RAM is recommended for the Q4_K_M quant.
This is an abliterated model with reduced safety guardrails. It will respond to requests that the original model would refuse. You are responsible for how you use it; ensure your usage complies with applicable laws and with the Llama 3.1 Community License. The model’s outputs are not endorsed by Meta or by the maintainers of this build.
Built & maintained by Richard Young · DeepNeuro