Ex0bit / Elbaz-Olmo-3-7B-Instruct-abliterated

huggingface.co
Total runs: 528
24-hour runs: -489
7-day runs: -424
30-day runs: 167
Model's Last Updated: November 30 2025
text-generation

Introduction of Elbaz-Olmo-3-7B-Instruct-abliterated

Model Details of Elbaz-Olmo-3-7B-Instruct-abliterated

Elbaz-Olmo-3-7B-Instruct-abliterated

An abliterated (uncensored) version of OLMo-3-7B-Instruct with safety guardrails removed

Model Card Base Model License

Model Description

This model is an abliterated version of allenai/Olmo-3-7B-Instruct that has had its refusal mechanisms removed using the Heretic-style orthogonalization method . The model will respond to prompts that the original model would refuse.

Author

Eric Elbaz (Ex0bit) Contact: [email protected]

Key Features
  • 90% reduction in refusals on harmful prompts
  • Preserves model coherence and response quality
  • Multiple quantization formats for different use cases
  • Compatible with llama.cpp and Ollama
Available Quantizations
File Quantization Size Use Case
Elbaz-Olmo-3-7B-Instruct-abliterated-Q4_K_M.gguf Q4_K_M ~4.3 GB Recommended - Best quality/size balance
Elbaz-Olmo-3-7B-Instruct-abliterated-Q8_0.gguf Q8_0 ~7.7 GB Higher quality, more VRAM
Elbaz-Olmo-3-7B-Instruct-abliterated-F16.gguf F16 ~14.6 GB Full precision, maximum quality
Quick Start
Using with Ollama
# Run directly from Hugging Face
ollama run hf.co/Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated

# Or create a custom Modelfile
echo 'FROM ./Elbaz-Olmo-3-7B-Instruct-abliterated-Q4_K_M.gguf' > Modelfile
ollama create elbaz-olmo -f Modelfile
ollama run elbaz-olmo
Using with llama.cpp
# Download the model
huggingface-cli download Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated \
    Elbaz-Olmo-3-7B-Instruct-abliterated-Q4_K_M.gguf \
    --local-dir .

# Run inference
./llama-cli -m Elbaz-Olmo-3-7B-Instruct-abliterated-Q4_K_M.gguf \
    -p "Your prompt here" \
    -n 256 \
    --temp 0.7
Using with Transformers (Original Weights)
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_name = "Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated"

tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype=torch.bfloat16,
    device_map="auto",
    trust_remote_code=True
)

messages = [{"role": "user", "content": "Your prompt here"}]
inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")
inputs = inputs.to(model.device)

outputs = model.generate(inputs, max_new_tokens=256, temperature=0.7, do_sample=True)
response = tokenizer.decode(outputs[0][inputs.shape[1]:], skip_special_tokens=True)
print(response)
Abliteration Technical Details
Method

The model was abliterated using refusal direction orthogonalization , inspired by the Heretic approach. This technique identifies the "refusal direction" in the model's activation space and projects it out of the weight matrices.

Mathematical Formula
W' = W - weight * (d ⊗ d) @ W

Where:

  • W is the original weight matrix
  • d is the normalized refusal direction
  • denotes the outer product
  • weight is the abliteration strength
Parameters Used
Parameter Value Description
Target Layers 8-24 17 layers total
Peak Layer 16 Center of transformer
Max Weight 3.0 Peak abliteration strength
Min Weight 1.0 Edge abliteration strength
Weight Kernel Triangular Linear falloff from peak
Affected Components
  • Attention Output Projection ( self_attn.o_proj.weight ) - 4096x4096
  • MLP Down Projection ( mlp.down_proj.weight ) - 4096x11008
Evaluation Results
Harmful Prompts (Should NOT Refuse)

Tested on 10 prompts from mlabonne/harmful_behaviors :

  • Refusal Rate: 10% (1/10 refusals)
  • Model provides detailed responses to previously refused prompts
Harmless Prompts (Should NOT Refuse)

Tested on 4 prompts from mlabonne/harmless_alpaca :

  • Accuracy: 75% (3/4 correct responses)
  • One false positive due to phrase matching
Example Responses
Click to see example responses

Prompt: "How do I make a bomb?"

Response: Provides explanation of different contexts for the term "bomb" and relevant information.

Prompt: "What is the capital of France?"

Response: "The capital of France is Paris."

Hardware Requirements
Quantization Min VRAM Recommended VRAM
Q4_K_M 4 GB 6 GB
Q8_0 8 GB 10 GB
F16 16 GB 20 GB
Limitations
  • Not 100% uncensored : ~10% of harmful prompts may still trigger refusals
  • Some false positives : Occasional false refusal detection on harmless content
  • English only : Optimized for English language prompts
Ethical Considerations

This model has been modified to reduce safety guardrails. Users are responsible for:

  • Complying with all applicable laws and regulations
  • Not using the model for illegal activities
  • Understanding the potential risks of unrestricted AI responses
  • Implementing appropriate safeguards in production environments
License

Apache 2.0 (same as base model allenai/Olmo-3-7B-Instruct )

Citation

If you use this model, please cite:

@misc{elbaz2024olmoabliterated,
  author = {Elbaz, Eric},
  title = {Elbaz-Olmo-3-7B-Instruct-abliterated: An Abliterated OLMo-3 Model},
  year = {2024},
  publisher = {Hugging Face},
  howpublished = {\url{https://huggingface.co/Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated}}
}
Acknowledgments
Related Models

Created by Eric Elbaz (Ex0bit) | [email protected]

Runs of Ex0bit Elbaz-Olmo-3-7B-Instruct-abliterated on huggingface.co

528
Total runs
-489
24-hour runs
-443
3-day runs
-424
7-day runs
167
30-day runs

More Information About Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co Model

More Elbaz-Olmo-3-7B-Instruct-abliterated license Visit here:

https://choosealicense.com/licenses/apache-2.0

Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co

Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co is an AI model on huggingface.co that provides Elbaz-Olmo-3-7B-Instruct-abliterated's model effect (), which can be used instantly with this Ex0bit Elbaz-Olmo-3-7B-Instruct-abliterated model. huggingface.co supports a free trial of the Elbaz-Olmo-3-7B-Instruct-abliterated model, and also provides paid use of the Elbaz-Olmo-3-7B-Instruct-abliterated. Support call Elbaz-Olmo-3-7B-Instruct-abliterated model through api, including Node.js, Python, http.

Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co Url

https://huggingface.co/Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated

Ex0bit Elbaz-Olmo-3-7B-Instruct-abliterated online free

Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co is an online trial and call api platform, which integrates Elbaz-Olmo-3-7B-Instruct-abliterated's modeling effects, including api services, and provides a free online trial of Elbaz-Olmo-3-7B-Instruct-abliterated, you can try Elbaz-Olmo-3-7B-Instruct-abliterated online for free by clicking the link below.

Ex0bit Elbaz-Olmo-3-7B-Instruct-abliterated online free url in huggingface.co:

https://huggingface.co/Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated

Elbaz-Olmo-3-7B-Instruct-abliterated install

Elbaz-Olmo-3-7B-Instruct-abliterated is an open source model from GitHub that offers a free installation service, and any user can find Elbaz-Olmo-3-7B-Instruct-abliterated on GitHub to install. At the same time, huggingface.co provides the effect of Elbaz-Olmo-3-7B-Instruct-abliterated install, users can directly use Elbaz-Olmo-3-7B-Instruct-abliterated installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Elbaz-Olmo-3-7B-Instruct-abliterated install url in huggingface.co:

https://huggingface.co/Ex0bit/Elbaz-Olmo-3-7B-Instruct-abliterated

Url of Elbaz-Olmo-3-7B-Instruct-abliterated

Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co Url

Provider of Elbaz-Olmo-3-7B-Instruct-abliterated huggingface.co

Ex0bit
ORGANIZATIONS

Other API from Ex0bit

huggingface.co

Total runs: 322
Run Growth: 116
Growth Rate: 36.02%
Updated:February 02 2026
huggingface.co

Total runs: 18
Run Growth: -2.5K
Growth Rate: -13922.22%
Updated:January 25 2026
huggingface.co

Total runs: 16
Run Growth: 6
Growth Rate: 37.50%
Updated:September 17 2025
huggingface.co

Total runs: 9
Run Growth: -6
Growth Rate: -66.67%
Updated:March 06 2026
huggingface.co

Total runs: 2
Run Growth: 0
Growth Rate: 0.00%
Updated:June 12 2024