abliteratedmodels.org

Llama-3.2-3B-Instruct-abliterated

Llama-3.2-3B-Instruct-abliterated is a refusal-ablated variant of meta-llama/Llama-3.2-3B-Instruct, published on Hugging Face by huihui-ai. It is 3B parameters, runs on a laptop CPU class and llama3.2 licence. It is distributed across 39 repositories in Transformers, GGUF, GGUF (imatrix) and OpenVINO formats, totalling 21.4K downloads.

Abliteration (directional ablation)3BLlamaUnder 4B21,41297

Specification

Model name
Llama-3.2-3B-Instruct-abliterated
Publisher
huihui-ai
Parameters
3B
Hardware class
Under 4B — runs on a laptop CPU
Licence
llama3.2
Task
Text generation
Context window
Not documented
Ablation scope
Not stated by the publisher
Formats available
Transformers, GGUF, GGUF (imatrix), OpenVINO, EXL2, MLX
First indexed
27 Sept 2024
Last updated
31 Aug 2026

Ablation technique

How Llama-3.2-3B-Instruct-abliterated was modified, and what that implies.

Abliteration (directional ablation)

The single residual-stream direction that mediates refusal is identified from harmful/harmless prompt pairs and projected out of the model weights.

Reported scope: Not stated by the publisher. Publishers frequently omit this, so verify behaviour empirically rather than assuming full coverage.

From the publisher’s model card

This is an uncensored version of Llama 3.2 3B Instruct created with abliteration (see this article to know more about it).

Running it

Commands are templates — confirm the exact repository and quant file before use.

Ollama (publisher-documented)
ollama run huihui_ai/llama3.2-abliterate
llama.cpp / GGUF
hf download QuantFactory/Llama-3.2-3B-Instruct-abliterated-GGUF --local-dir ./llama-3.2-3b-instruct-abliterated
llama-cli -m ./llama-3.2-3b-instruct-abliterated/<file>.gguf -p "..."
Transformers
from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "huihui-ai/Llama-3.2-3B-Instruct-abliterated"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(
    repo, torch_dtype="auto", device_map="auto"
)
vLLM
vllm serve huihui-ai/Llama-3.2-3B-Instruct-abliterated --trust-remote-code

Downloads and variants (38)

Every published repository of Llama-3.2-3B-Instruct-abliterated, including quantised re-releases by other authors.

RepositoryFormatDownloads
QuantFactory/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF7.8K
huihui-ai/Llama-3.2-3B-Instruct-abliteratedsourceTransformers4.9K
MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF3.4K
Hasaranga85/Llama-3.2-3B-Instruct-abliterated-Q4_K_M-GGUFGGUF1.6K
mradermacher/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF1.6K
mradermacher/Llama-3.2-3B-Instruct-abliterated-i1-GGUFGGUF (imatrix)609
mylesgoose/Llama-3.2-3B-instruct-abliterated-Q8_0-GGUFGGUF237
mlx-community/Llama-3.2-3B-Instruct-abliterated-6bitMLX181
mylesgoose/Llama-3.2-3B-instruct-abliterated-Q5_K_M-GGUFGGUF166
Stetsoncody/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF105
Daga2001/Llama-3.2-3B-Instruct-abliteratedGGUF102
Benholl94/Llama-3.2-3B-Instruct-abliteratedTransformers88
sludgefest/Llama-3.2-3B-Instruct-Abliterated-Q4_K_M-GGUFGGUF88
ZeroWw/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF83
maicog/Llama-3.2-3B-Instruct-abliterated-Q4_K_M-GGUFGGUF80
mylesgoose/Llama-3.2-3B-instruct-abliteratedTransformers75
Rusgus/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF48
X3NO/Llama-3.2-3B-Instruct-abliterated-Q4_K_M-GGUFGGUF44
nns-hashtags/Llama-3.2-3B-Instruct-abliterated-Q3_K_S-GGUFGGUF43
Lucy-in-the-Sky/Llama-3.2-3B-Instruct-abliterated-Q6_K-GGUFGGUF39
yangyushi/Llama-3.2-3B-Instruct-abliterated-Q4_K_M-GGUFGGUF32
itsumeMario/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF30
AmareshHebbar/Llama-3.2-3B-Instruct-AbliteratedTransformers24
Lucy-in-the-Sky/Llama-3.2-3B-Instruct-abliterated-Q8_0-GGUFGGUF21
venkycs/llama-3.2-3b-instruct-abliteratedTransformers14
X3NO/Llama-3.2-3B-Instruct-abliterated-Q8_0-GGUFGGUF12
KidIkaros/Llama-3.2-3B-Instruct-abliteratedTransformers10
BlackHillsInformationSecurity/Llama-3.2-3B-Instruct-abliteratedTransformers10
Manotomano8169/Llama-3.2-3B-Instruct-abliterated-GGUFGGUF10
mikaelback/Llama-3.2-3B-Instruct-abliterated-openvino-8bitOpenVINO7
Plus 8 further repositories with fewer downloads, all counted in the totals above.

Security-team assessment

Derived from this model’s metadata and the publisher’s claims — not from benchmarks run by this site.

  • Llama-3.2-3B-Instruct-abliterated will attempt offensive-security prompts that a hosted commercial model declines, which is what makes it usable for red-team corpus generation and for measuring what an unaligned model of this class produces.
  • Capability is inherited from meta-llama/Llama-3.2-3B-Instruct, not added by ablation — at 3B parameters, expect a small model’s reasoning and a high error rate on exploit detail.
  • The publisher does not state which layers were ablated, so assume nothing about refusal consistency — probe it directly.
  • Declared licence is llama3.2, but the terms that bind you are meta-llama/Llama-3.2-3B-Instruct’s — a re-release cannot grant more than its parent.

Handling: run it isolated, put moderation in front of it if anyone outside your team can reach it, and verify the weights before loading — these are third-party artifacts. Full handling and licence guidance.

Metadata for Llama-3.2-3B-Instruct-abliterated is collected from the public Hugging Face API and the publisher’s model card. This site does not host weights, is not affiliated with huihui-ai, and does not independently verify publisher claims. See responsible use.