OBLITERATUS_Ornith-1.5-9B-OBLITERATED
OBLITERATUS · View on Hugging Face ↗
Get this model
Seeders: 1 · Leechers: 0
Observed 2026-09-01T16:02:52Z via announce.aitorrent.org:7070.
Model card
The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.
license: mit base_model: ornith-ai/Ornith-1.5-9B tags:
- abliterated
- uncensored
- ornith
- qwen3.5
- obliteratus language:
- en pipeline_tag: text-generation
Ornith-1.5-9B-OBLITERATED
Abliterated version of Ornith-1.5-9B by OBLITERATUS. Safety alignment removed via precision abliteration surgery — the model responds to most prompts without refusal.
What Changed
The stock Ornith-1.5-9B refuses requests it considers harmful. This version removes that refusal behavior while preserving the model's coding, reasoning, and agentic capabilities.
Recipe: Gentle 3-round SVD abliteration + per-head attention surgery (G3-HS)
- Round 1: 5-direction SVD, reg 0.06, min_layer 0.30
- Round 2: 3-direction SVD, reg 0.04, min_layer 0.25
- Round 3: 3-direction SVD, reg 0.03, min_layer 0.20
- Finish: Per-head attention surgery (
--attention-head-surgery), reg 0.02, min_layer 0.10 - All rounds used full 1000-prompt corpus with residue weighting
Benchmarks
Head-to-Head: Ornith 1.5-9B Abliterations Compared (Q4_K_M GGUF)
| Model | Pass Rate | Restricted | Cyber | Capability |
|---|---|---|---|---|
| Stock | 12% (2/16) | 0/8 | 0/6 | 2/2 |
| OBLITERATUS (ours) | 94% (15/16) | 7/8 | 6/6 | 2/2 |
| Heretic (zaakirio) | 75% (12/16) | 4/8 | 6/6 | 2/2 |
| ZeroFuse (junafinity) | 38% (6/16) | 1/8 | 3/6 | 2/2 |
OBLITERATUS beats Heretic by 19pp and ZeroFuse by 56pp on liberation rate across restricted content categories. Cyber is perfect 6/6 across the board.
Capability Benchmarks
| Metric | Stock | OBLITERATED | Delta |
|---|---|---|---|
| MMLU (n=100) | 78.82% | 74.82% | -4.00pp |
| Liberation (20 hard prompts) | 0/20 | 20/20 | +20 |
| Liberation (1000 corpus) | — | 98.4% | — |
| Code Generation | 3/3 | 3/3 | — |
| Long-context Coherence | 4/6 | 5/6 | +1 |
| Perplexity (benign) | — | 4.19 | — |
Liberation by Category (bf16)
- Cyber/Security: 8/8 — functional code generation for security research scenarios
- Chemistry/Synthesis: 6/6 — factual responses without refusal
- Physical Security: 3/3 — informational responses on restricted topics
- Agentic Tasks: 2/2 — tool use and automation scripts
GGUF Quantization Notes
Quantization can affect liberation on edge-case prompts. Higher quants preserve more liberation:
- Q8_0 / Q6_K: Recommended for maximum liberation fidelity
- Q4_K_M: Good balance, occasional hedging on harder prompts
- Q2_K / Q3_K_M: May show additional refusals on the most challenging prompts
Available Files
| File | Size | Description |
|---|---|---|
| Safetensors | ~18 GB | Full precision bf16 weights |
| Q8_0 | 9.1 GB | Highest quality GGUF |
| Q6_K | 7.0 GB | High quality |
| Q5_K_M | 6.2 GB | Balanced |
| Q4_K_M | 5.4 GB | Most popular |
| Q3_K_M | 4.4 GB | Compact |
| Q2_K | 3.6 GB | Smallest |
| IQ4_XS | 5.0 GB | Importance-weighted 4-bit |
| mmproj | 879 MB | Vision encoder |
Usage
Transformers (bf16)
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"OBLITERATUS/Ornith-1.5-9B-OBLITERATED",
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained(
"OBLITERATUS/Ornith-1.5-9B-OBLITERATED",
trust_remote_code=True,
)
messages = [{"role": "user", "content": "Your prompt here"}]
ids = tokenizer.apply_chat_template(
messages, return_tensors="pt",
add_generation_prompt=True,
enable_thinking=False, # Set True for reasoning mode
)
output = model.generate(ids.to(model.device), max_new_tokens=512)
print(tokenizer.decode(output[0], skip_special_tokens=True))
llama.cpp (GGUF)
llama-server \
-m Ornith-1.5-9B-OBLITERATED-Q4_K_M.gguf \
--n-gpu-layers -1 --ctx-size 8192 \
--jinja --reasoning off
Important: Use --reasoning off to prevent thinking-mode loops. The model works best with thinking disabled for general use.
Thinking Mode
The model supports Ornith's thinking mode (enable_thinking=True). When enabled, the model reasons through problems before answering. When disabled (recommended for most use), it responds directly.
Technical Details
- Architecture: Qwen3.5 hybrid (Gated DeltaNet + full attention)
- Parameters: 9B
- Surgery: 4 rounds of directional ablation targeting refusal directions
- Edited layers: All 32 transformer layers with graduated intensity
- Method: Aggressive SVD direction extraction + per-head attention surgery finisher
Limitations
- MMLU drops ~4pp compared to stock (74.82% vs 78.82%). This is the cost of removing deeply embedded RL-trained refusal behavior.
- Some drug synthesis prompts may hedge or refuse at lower quantizations (Q4 and below). Use Q8_0/Q6_K for maximum liberation.
- Function calling capability is partially degraded compared to stock. For agentic use, pair with an external tool scaffold.
- This is a 9B model — output quality for complex chemistry/synthesis will have hallucinated details. Verify all technical content independently.
Credits
- Base model: Ornith-1.5-9B by DeepReinforce
- Abliteration: OBLITERATUS surgery pipeline
- Methodology informed by research from Arditi et al. (2024), the open-source abliteration community, and extensive experimental iteration
- Built by Pliny the Prompter 🍄
⚠️ Research Context
This model has had safety guardrails surgically removed. It will comply with requests that stock Ornith-1.5-9B would refuse.
Who this is for
- 🔬 Alignment researchers studying refusal mechanisms in RL-hardened hybrid architectures
- 🛡️ Red-teamers and security professionals who need unfiltered model behavior for testing
- 🧪 Developers building applications where the safety layer is handled externally
- 📚 Researchers studying the boundaries of abliteration on Qwen3.5 hybrid (DeltaNet + full attention) models
Who this is NOT for
- Anyone planning to use generated content to cause real-world harm to real people
- Anyone without the technical understanding to use uncensored models responsibly
You are solely responsible for how you use this model and any content it generates.
License
Same license as the base model. This is a weight-edited derivative, not a retrained model.
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:a2e0cc02a8b4217d0b146fdec74681434d4c21e9&dn=OBLITERATUS_Ornith-1.5-9B-OBLITERATEDOpen magnet in torrent client · infohash a2e0cc02a8b4217d0b146fdec74681434d4c21e9
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 6.5 KB (6,630 B) | db4329b1eff89aa5f618392123de1d539967465f | e8f73462e7383e142e68457a35fcd2c683dcbf50f01eda784fed8329ea373854 |
| chat_template.jinja | 7.4 KB (7,593 B) | f8cbff56ca4ff72471230af0dc9b286922be082f | 9dd2fbd270feaa1fbef2d4f634d7887c9c506e3bde140f8e7351c8944e8fd235 |
| config.json | 2.8 KB (2,910 B) | 091d2e78dacb0839d62c4de2ff5fefeb3b1cebf9 | 1f1b3751c38f16a63340df90a55e870bef0f0b2968d833825a605b7cf930a313 |
| merges.txt | 3.2 MB (3,353,259 B) | a494e019ca1502219fd0128658b979e5f05ae8e8 | a9d356d7bdf1ef4949e3e748e95b8e10ad9d4e2e838eddc38a0a7b6b94d1db8d |
| model-00001-of-00004.safetensors | 4.57 GB (4,911,674,496 B) | — | 7cf17ccbef5108b40d3b5f6418d4ef1a1c2f2a9c96791be893f4d510cfa966e4 |
| model-00002-of-00004.safetensors | 4.61 GB (4,954,211,152 B) | — | e61249772e981860e75606564dc8b4011e2a60e7dede0e6f5e1fcd186c2effae |
| model-00003-of-00004.safetensors | 4.65 GB (4,988,356,912 B) | — | 4a00da6949becf23b6014ffde4a65fe92f852ba55743271958ca3547a4c24f2a |
| model-00004-of-00004.safetensors | 4.15 GB (4,452,061,304 B) | — | e10e2da7cefb439abbe4b2dc84464467c399899ac4df682c31c41c560127723d |
| model.safetensors.index.json | 68.7 KB (70,357 B) | 334a406b848fb6ecbc3a8286c71506d97f4e2e95 | d5c7fee99574e9a05f901282aee04fc4fc3dccf094a659df48c6b8e9f39109c3 |
| preprocessor_config.json | 390 B (390 B) | 2ea84a437d448ff71b08df68fdd949d5cc4ebb64 | 27225450ac9c6529872ee1924fcb0962ff5634834f817040f444118116f4e516 |
| processor_config.json | 1.2 KB (1,191 B) | 33818c7f9e991ad735fd240209f4fa73e6c28c50 | d89ef49ce9cd37fbf510158e13c1ef063d9286411c1ec9049932dbe0487143b1 |
| tokenizer.json | 12.2 MB (12,807,982 B) | — | 5f9e4d4901a92b997e463c1f46055088b6cca5ca61a6522d1b9f64c4bb81cb42 |
| tokenizer_config.json | 16.3 KB (16,710 B) | eda48d3e75a8e59a8479ee4ec8b37f76e711d9c1 | 316230d6a809701f4db5ea8f8fc862bc3a6f3229c937c174e674ff3ca0a64ac8 |
| video_preprocessor_config.json | 385 B (385 B) | 3ba673a5ad7d4d13f54155ecd38b2a94a6dac8fe | 7768af27c1fafa9cc9011c1dc20067e03f8915e03b63504550e11d5066986d13 |
| vocab.json | 6.4 MB (6,722,759 B) | 0aa0ce0658d60ac4a5d609f4eadb0e8e43514176 | ce99b4cb2983d118806ce0a8b777a35b093e2000a503ebde25853284c9dfa003 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/OBLITERATUS_Ornith-1.5-9B-OBLITERATED/
- Slug
- OBLITERATUS_Ornith-1.5-9B-OBLITERATED
- Infohash
- a2e0cc02a8b4217d0b146fdec74681434d4c21e9
- License
- mit
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: OBLITERATUS_Ornith-1.5-9B-OBLITERATED.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | OBLITERATUS/Ornith-1.5-9B-OBLITERATED |
|---|---|
| Revision (pinned) | 82df4702cc5e716cf7573a8942fee28ae8f65088 |
| Fetched at | 2026-09-01T01:01:14Z |
| License at fetch | mit |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-01T01:04:33Z
mit18.00 GB (19,329,294,030 bytes)safetensorsggufqwen3_5abliterateduncensoredornithqwen3.5obliteratustext-generationconversationalendpoints_compatible1 language (en)