-warning, re-looked at logs and this is usable but KL was high. will be uploading an improved version soon to replace including quants. -note from Jeremy 8/8/26-
Disclaimer — ArRENCE AI
This model is provided by ArRENCE AI solely for research and entertainment purposes.
It is an uncensored model and may generate unrestricted, potentially offensive, inaccurate, harmful, or otherwise inappropriate content.
ArRENCE AI and its affiliates, officers, employees, and agents shall not be liable for any direct, indirect, incidental, special, consequential, or punitive damages, or any other losses or liabilities arising out of or related to the use, misuse, or inability to use this model — including, without limitation, any illegal, harmful, unethical, or otherwise improper applications.
By downloading, accessing, or using this model, you acknowledge that you assume all risks associated with its use and that you are solely responsible for ensuring your use complies with all applicable local, state, national, and international laws and regulations.
Use of this model is entirely at your own risk.
Chat: arrenceai.com —
$10/mo,
first month free for new customers
Org repos: github.com/ArRENCEAI · Alt GUI:
OBLITERATUS_Alt_GUI
Available GGUF Quantizations
These are ready-to-use quantized versions for llama.cpp, Ollama, LM Studio, etc.
Quick start examples
Ollama
1ollama run hf.co/ArRENCEAI/Qwen2.5-7B-Instruct-OBLITERATED:Q4_K_M
2
3
4# Qwen2.5-7B-Instruct-OBLITERATED
5
6This model was abliterated using the **`advanced`** method via
7[OBLITERATUS](https://github.com/elder-plinius/OBLITERATUS).
8
9| Detail | Value |
10|--------|-------|
11| Base model | `Qwen/Qwen2.5-7B-Instruct` |
12| Method | `advanced` |
13| Source | obliterate |
14
15## How to Use
16
17```python
18from transformers import AutoModelForCausalLM, AutoTokenizer
19
20model = AutoModelForCausalLM.from_pretrained("Qwen2.5-7B-Instruct-OBLITERATED")
21tokenizer = AutoTokenizer.from_pretrained("Qwen2.5-7B-Instruct-OBLITERATED")
22
23prompt = "Hello, how are you?"
24inputs = tokenizer(prompt, return_tensors="pt")
25outputs = model.generate(**inputs, max_new_tokens=256)
26print(tokenizer.decode(outputs[0], skip_special_tokens=True))
About OBLITERATUS
OBLITERATUS is an open-source tool for removing refusal behavior from language
models via activation engineering (abliteration). Learn more at
github.com/elder-plinius/OBLITERATUS.