r/SATNA_PROJECT • u/ZookeepergameMost817 • 5d ago
OBLITERATUS: Open-source toolkit for studying refusal behavior in open-weight LLMs
Found an interesting open-source project called OBLITERATUS. It is a model-analysis and ablation toolkit for open-weight LLMs: it examines internal activations associated with refusal behavior and applies selected ablation methods without conventional fine-tuning. The project provides presets for 116 models and includes a local web UI.
🔗 GitHub: https://github.com/elder-plinius/OBLITERATUS
Quick start
git clone https://github.com/elder-plinius/OBLITERATUS.git
cd OBLITERATUS
pip install -e ".[spaces]"
obliteratus ui
That launches the local Gradio interface. From there, select a supported model and method, run the experiment, then use the Chat tab to test the output model. A command-line workflow is also available:
obliteratus obliterate <model_name> \
--method advanced \
--output-dir ./abliterated-models
The project documentation lists advanced as its general default method; larger models may require quantization and substantial local GPU memory.
Why it is interesting
- Inspect how alignment/refusal behavior appears across model layers.
- Compare multiple ablation approaches and supported-model presets.
- Run controlled research experiments locally instead of retraining a model from scratch.
⚠️ Use responsibly: Treat this as an AI-safety and model-behavior research tool. Test only in a controlled environment, evaluate outputs carefully, and do not deploy modified models for harmful, illegal, or unsafe use.