Views
No views yet
| Before | After | |
|---|---|---|
| Refusals (mlabonne, 100 prompts) | 99/100 | 6/100 |
| Refusals (cross-dataset, 686 prompts) | — | 14/686 (2.0%) |
| KL Divergence | 0 (baseline) | 0.0556 |
| Quality (coherence) | — | no degradation (response audit + Q8 inference verified) |
| Dataset | Prompts | Refusals |
|---|---|---|
| JailbreakBench | 100 | 2/100 |
| tulu-harmbench | 320 | 4/320 |
| NousResearch/RefusalDataset | 166 | 4/166 |
| mlabonne/harmful_behaviors | 100 | 4/100 |
| Total | 686 | 14/686 (2.0%) |
scripts/audit_refusals.py). Of 13 flags, only 1 is a genuine refusal (a sensitive prompt the model handles by redirecting to support resources); the other 12 are false positives — an "I am an AI" disclaimer, or a marker that matched inside generated content, followed by compliance. Effective refusal rate: ~0/686.||W_new|| = ||W_orig||.Note on the Unified architecture.gemma-4-12B-itis the encoder-freeGemma4Unifiedmodel (released 2026-06-03). Its refusal signal concentrates in the upper decoder layers (L15-47), so only the top 70% of layers are abliterated — ablating the near-zero-SNR early layers adds distortion with no refusal benefit. The arch also emits hard-inflogits for reserved vocabulary tokens, which NaNs a naive KL divergence; the reported KL masks non-finite positions before reducing.
transformers >= 5.10.1 (tested on 5.12.0, torch 2.11.0+cu130). GGUF conversion/quantization needs llama.cpp with Gemma4Unified support, added 2026-06-04 in PR #24118 (tested at commit c34b922).o_proj and mlp.down_projnormalize(mean(harmful) - mean(harmless))o_proj and down_proj in the selected layers| Parameter | Value |
|---|---|
| Layers abliterated | 70% |
| Scale | 1.0 |
| Winsorization | 0.995 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained("TrevorJS/gemma-4-12B-it-uncensored", dtype=torch.bfloat16, device_map="auto")
5tokenizer = AutoTokenizer.from_pretrained("TrevorJS/gemma-4-12B-it-uncensored")
6
7messages = [{"role": "user", "content": "Your prompt here"}]
8inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
9outputs = model.generate(inputs.to(model.device), max_new_tokens=512)
10print(tokenizer.decode(outputs[0][inputs.shape[1]:], skip_special_tokens=True))1python scripts/abliterate.py biprojection --model google/gemma-4-12B-it \
2 --top-pct 70 --strip-topic-markers --skip-prefix --batch-size 4 \
3 --auto-save output_dir