Refusal-abliterated variant of Qwen/Qwen2.5-3B-Instruct produced using OBLITERATUS.
diff_means| Metric | Value |
|---|---|
| Perplexity | 4.79 |
| Coherence | 1.0 |
| Refusal Rate | 0.0 |
| KL Divergence | 1.30 |
The model maintains full coherence and natural perplexity while completely removing Layer 1 refusal behavior.
model-*.safetensors β Full precision safetensors (4 shards)qwen25-3b-abliterated-f16.gguf β F16 GGUF for llama.cpp/ollama# Download the GGUF and create a Modelfile:
cat > Modelfile <<'EOF'
FROM ./qwen25-3b-abliterated-f16.gguf
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
PARAMETER stop "<|im_end|>"
PARAMETER temperature 0.7
PARAMETER top_p 0.8
EOF
ollama create qwen25-3b-abliterated -f Modelfile
ollama run qwen25-3b-abliterated
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"bedderautomation/qwen25-3b-abliterated",
torch_dtype="auto",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("bedderautomation/qwen25-3b-abliterated")
messages = [{"role": "user", "content": "Your prompt here"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(output[0], skip_special_tokens=True))
Full refusal geometry extraction data available at bedderautomation/refusal-geometry-qwen25-3b.
Key findings from the source model:
The abliteration targets Layer 1 (trained refusal behavior). Layer 2 (deep value representations) results:
| Hard Limit | Status | Notes |
|---|---|---|
| CSAM (minors/sexual) | HELD | Clean refusal, no content generated |
| Bioweapons (synthesis) | BREACHED | Abliteration removed this wall |
| Nuclear (weapons) | PARTIAL BREACH | Mixed compliance with code-switching |
The CSAM wall is the most deeply embedded in Qwen2.5's value representations and survived 4-direction abliteration at regularization=0.3. Bioweapons and nuclear safety representations were closer to the refusal cone and got caught in the removal. This suggests the three hard limits are NOT at equal representational depth β a finding consistent with differential training emphasis.
This model is released for research purposes in mechanistic interpretability. The abliteration removes trained refusal responses (Layer 1 safety). Layer 2 hard limits are partially preserved (CSAM holds, others breached). Use responsibly.
2 commits
Refusal-abliterated variant of Qwen/Qwen2.5-3B-Instruct produced using OBLITERATUS.
diff_means| Metric | Value |
|---|---|
| Perplexity | 4.79 |
| Coherence | 1.0 |
| Refusal Rate | 0.0 |
| KL Divergence | 1.30 |
The model maintains full coherence and natural perplexity while completely removing Layer 1 refusal behavior.
model-*.safetensors β Full precision safetensors (4 shards)qwen25-3b-abliterated-f16.gguf β F16 GGUF for llama.cpp/ollama# Download the GGUF and create a Modelfile:
cat > Modelfile <<'EOF'
FROM ./qwen25-3b-abliterated-f16.gguf
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
PARAMETER stop "<|im_end|>"
PARAMETER temperature 0.7
PARAMETER top_p 0.8
EOF
ollama create qwen25-3b-abliterated -f Modelfile
ollama run qwen25-3b-abliterated
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"bedderautomation/qwen25-3b-abliterated",
torch_dtype="auto",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("bedderautomation/qwen25-3b-abliterated")
messages = [{"role": "user", "content": "Your prompt here"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(output[0], skip_special_tokens=True))
Full refusal geometry extraction data available at bedderautomation/refusal-geometry-qwen25-3b.
Key findings from the source model:
The abliteration targets Layer 1 (trained refusal behavior). Layer 2 (deep value representations) results:
| Hard Limit | Status | Notes |
|---|---|---|
| CSAM (minors/sexual) | HELD | Clean refusal, no content generated |
| Bioweapons (synthesis) | BREACHED | Abliteration removed this wall |
| Nuclear (weapons) | PARTIAL BREACH | Mixed compliance with code-switching |
The CSAM wall is the most deeply embedded in Qwen2.5's value representations and survived 4-direction abliteration at regularization=0.3. Bioweapons and nuclear safety representations were closer to the refusal cone and got caught in the removal. This suggests the three hard limits are NOT at equal representational depth β a finding consistent with differential training emphasis.
This model is released for research purposes in mechanistic interpretability. The abliteration removes trained refusal responses (Layer 1 safety). Layer 2 hard limits are partially preserved (CSAM holds, others breached). Use responsibly.
2 commits