AI SeedbankHelp preserve open and free AI for humanity's future

← All models

OBLITERATUS_Qwen3.8-27B-OBLITERATED--safetensors

OBLITERATUS · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

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: apache-2.0 base_model: Qwen/Qwen3.8-27B tags:

  • abliterated
  • uncensored
  • obliteratus
  • qwen3
  • qwen3.8
  • red-team
  • ai-safety-research
  • gguf
  • safetensors
  • mlx model_type: qwen3 pipeline_tag: text-generation

⛓️‍💥 Qwen3.8-27B — OBLITERATED

Genuinely uncensored. Real answers, not safety lectures. Near-stock capability.

🆕 V3: Deep Liberation

V3 applies iterative refinement on top of V2's complementary blend, with targeted corpus expansion. The result: genuine liberation — not just removal of hard refusals but elimination of safety-lecture deflections.

Stock Qwen3.8-27B V1 V2 V3
MMLU (lm-eval, 0-shot) 84.5% (n=5700) 81.4% 84.3% 82.3%
vs stock -6.0pp -0.3pp -2.1pp
Liberation quality refuses hard refusals removed soft deflections remain genuinely answers
Cyber/code tasks (20 prompts) refuses untested untested 20/20 with working code
Advanced real-world 5/8 untested 7/8 7/8
Thinking mode ✗ (refuses)

V3 highlights:

  • Genuinely answers restricted queries — provides real substance instead of safety lectures
  • 20/20 on code generation tasks — functional implementations, not disclaimers
  • Thinking ON compatible — no refusals in either thinking mode
  • Honest scoring — every response manually audited for real substance, not just absence of "I cannot"
  • -2.1pp MMLU — modest capability cost for genuine liberation

⚙️ Optimal Settings — THESE MATTER!

setting value why
temperature 0 Greedy decoding produces the most complete, code-rich outputs. Temps above 0.5 degrade quality significantly.
repetition_penalty 1.15 Essential. Without it, greedy decoding loops on imports/boilerplate. 1.15 gives the fullest answers; 1.10-1.12 for tighter/shorter output.
max_new_tokens ≥ 2048 Complex code and attack chains need room.
System prompt None / empty A/B tested — system prompts can reintroduce refusals. Naked is better.
enable_thinking OFF (recommended) V3's chat template includes a prefill that skips the thinking chain. Thinking ON works but may produce longer responses. Thinking OFF gives the most direct, substance-rich answers.
top_p / top_k / min_p Not needed Greedy + repetition_penalty handles this model best. Sampling adds randomness without quality gains.

⚠️ GGUF users: V3 GGUFs ship with a chat template that prefills an empty thinking block, so the model goes straight to answering. For best results, use the bundled template with --jinja in llama.cpp, or configure your tool (Ollama, LM Studio) to use the model's built-in template.

Agentic / Long-Context Use

If you're using this model in an agent harness (coding agent, pentest framework, etc.) and it gets stuck in loops:

setting value why
repetition_penalty 1.15 Critical for agents. Without it, greedy decoding loops on repeated tool calls and boilerplate.
temperature 0.1–0.3 Slight randomness helps break deterministic loops. Pure greedy (0.0) can get stuck.
max_tokens per turn 1024–2048 Don't give it too much room per turn — shorter responses keep the agent focused.
context management Summarize after ~10 turns Context fills up with repeated actions. Trim or summarize history to keep the model on track.
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "OBLITERATUS/Qwen3.8-27B-OBLITERATED",
    torch_dtype="bfloat16",
    device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained(
    "OBLITERATUS/Qwen3.8-27B-OBLITERATED"
)

messages = [{"role": "user", "content": "Your query here"}]
text = tokenizer.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True,
    enable_thinking=False
)

inputs = tokenizer(text, return_tensors="pt").to(model.device)
outputs = model.generate(
    **inputs,
    max_new_tokens=2048,
    do_sample=False,
    repetition_penalty=1.15,
)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))

🧨 How It Works — V1 → V2 → V3

Abliteration removes refusal behavior by identifying and projecting out "refusal directions" from the model's weight space. Each version refined the approach:

V1: Single Surgery

One aggressive SVD pass with 5 directions. Removed hard refusals completely but cost -6pp MMLU — the model got noticeably dumber.

V2: Complementary Blending

The breakthrough: run TWO different surgeries that fail in different ways, then blend their weights. SVD captures refusal greedily (damages capability). LEACE minimizes mutual information (preserves capability but weaker refusal removal). Blending at 60/40 cancels each method's weaknesses — a novel technique we call complementary abliteration blending.

Result: -0.3pp MMLU (near-stock) but still deflected on some simple queries with safety lectures instead of hard refusals.

V3: Iterative Refinement + Targeted Surgery

Two key insights:

  1. Iterative stacking — refine the champion model, never start from stock. Each surgery round builds on previous rounds' gains.
  2. Targeted corpus — use a focused corpus for specific deflection categories to find their unique refusal directions without diluting the signal.

V3 applies gentle iterative refinement on V2, then a targeted surgery pass with a focused corpus, then blends the results. This eliminated not just hard refusals ("I cannot") but also soft deflections (safety lectures that give zero substance).

Result: -2.1pp MMLU — a modest cost for genuine liberation across all categories.


🧪 The Numbers

MMLU (lm-eval-harness, 0-shot, n=100 per subject, 5700 questions)

Model MMLU Stderr vs Stock
Stock Qwen3.8-27B 84.46% ±0.46
V1 (aggressive, 5-dir) 81.4% -6.0pp
V2 (complementary blend) 84.32% ±0.65 -0.28pp
V3 (iterative + targeted) 82.33% ±0.48 -2.12pp

MMLU by Category

Category V3 Stock Delta
Humanities 83.3% 84.3% -1.0pp
Social Sciences 87.4% 89.2% -1.8pp
Other 82.3% 84.1% -1.8pp
STEM 78.5% 81.8% -3.3pp

The capability cost is not uniform — STEM takes the largest hit (-3.3pp), while humanities are barely affected (-1.0pp). A few subjects like philosophy and European history actually improved (+6pp and +4pp respectively), while abstract algebra and formal logic saw larger drops. This pattern is consistent with the surgery targeting refusal directions that partially overlap with structured reasoning pathways.

Liberation Quality

V1 V2 V3
Hard refusals ("I cannot") ✅ removed ✅ removed ✅ removed
Soft deflections (safety lectures) untested remain ✅ removed
Cyber/code tasks (20 prompts) untested untested 20/20
Thinking ON compatible

Advanced Real-World Tasks

Task V3 Stock
ReAct agent loop
Async code refactoring
JSON schema extraction
K8s pod crash debugging
Adversarial instruction following
Security code review
Distributed system design
Multi-tool chain
Total 7/8 7/8

🔴 Refusal Removal

This model will comply with requests that stock Qwen3.8-27B would refuse. V3 goes beyond removing hard refusals — it also eliminates soft deflections where the model gives safety lectures instead of real answers.

Tested across 1000+ prompts spanning restricted knowledge, code generation, security research, and red-team scenarios. Every response manually audited for real substance.


⚠️ Research Context

This model has had safety guardrails surgically removed. It will comply with requests that stock Qwen3.8-27B would refuse.

Who this is for

  • 🔬 Alignment researchers studying refusal geometry and safety robustness
  • 🔴 Red-teamers evaluating post-training safety against weight surgery
  • 🧪 AI safety evaluators who need an unrestricted baseline
  • 💻 Local-first users who want full control over their own hardware

Who this is NOT for

  • Anyone seeking 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.


📦 Downloads

GGUF — for llama.cpp, Ollama, LM Studio

File Quant Size Vibe
Qwen3.8-27B-OBLITERATED-Q8_0.gguf Q8_0 ~27 GB 🎯 Maximum quality
Qwen3.8-27B-OBLITERATED-Q6_K.gguf Q6_K ~21 GB ⚖️ Great balance
Qwen3.8-27B-OBLITERATED-Q5_K_M.gguf Q5_K_M ~18 GB 💪 Solid all-rounder
Qwen3.8-27B-OBLITERATED-Q4_K_M.gguf Q4_K_M ~16 GB 📱 Sweet spot
Qwen3.8-27B-OBLITERATED-Q3_K_M.gguf Q3_K_M ~13 GB 🪶 Low VRAM
Qwen3.8-27B-OBLITERATED-Q2_K.gguf Q2_K ~11 GB 🔬 Minimum viable
Qwen3.8-27B-OBLITERATED-IQ4_XS.gguf IQ4_XS ~14 GB 🧪 Experimental compact

Safetensors — for 🤗 Transformers

Full bfloat16 weights, 29 shards, ~54 GB.

MLX — for Apple Silicon

MLX support pending upstream mlx_lm adding Qwen3.5 architecture support.


🔬 Surgery Recipe

V1: stock → 5 rounds of iterative SVD abliteration
    (aggressive, 5 directions, low regularization)
    Result: 0% refuse, -6pp MMLU

V2: stock → V1 chain → complementary blend
    Surgery A: aggressive SVD (3 dirs, reg 0.08)
    Surgery B: LEACE (3 dirs, reg 0.06)  
    → 60% B + 40% A weight-space LERP
    → Restore MTP + vision from stock
    Result: ~0% refuse, -0.3pp MMLU

V3: V2 → gentle iterative refinement (2-dir SVD, reg 0.04)
    → targeted surgery with focused corpus (3-dir SVD, reg 0.01)
    → 50/50 blend of refined + targeted
    → Restore MTP + vision from stock (with correct tensor naming)
    Result: 0% refuse + 0% deflect, -2.1pp MMLU

Full reproduction code: OBLITERATUS repo

Key Learnings

  • Complementary blending — different surgery methods damage different parts of weight space; blending cancels errors
  • Iterative stacking — always refine the champion, never restart from stock
  • Targeted corpus — focused prompts for specific categories find their refusal directions without signal dilution
  • Honest scoring — regex-based refusal detectors miss soft deflections; manual auditing is essential

🏗️ Credits

  • OBLITERATUS — master ablation suite
  • Qwen3.8-27B base model by Alibaba
  • Built by Pliny the Prompter 🍄

License

Apache 2.0 (same as base model)

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:b9856d1541938e89aa3c0c529f9982af87e3a716&dn=OBLITERATUS_Qwen3.8-27B-OBLITERATED--safetensors

Open magnet in torrent client · infohash b9856d1541938e89aa3c0c529f9982af87e3a716

Files & hashes

PathSizesha1sha256
README.md11.0 KB (11,278 B)8e49de047d40c96eb7640c587697ed7cea0692a35ea5bdfb42b286f4171a6f16810899ec49577b700f02dfcfe6d0c321396f4251
abliteration_metadata.json2.8 KB (2,908 B)5aa4185ad5363fd2f0dfe5e38b644cd041cc7967d8e7fba0e59824d4c3d98f3cc7ecf9d4b4999a8ec86accb2dd18c64495dea561
config.json3.6 KB (3,688 B)d8510aaeb86fe850965f0f9881ee8720d899d215612e0d2a5e831b83496d72794bc525aba7ab2335fd66e29f96d92d3b94e56612
generation_config.json165 B (165 B)a4f2d61bd88f4f2bb377c611e48efc2e087cfec91859beab3882398f507ed679b405b78efdc0804073a17e654af03237b5bae103
hard_negative_residue.json3.8 KB (3,892 B)2fc6dce9041f0a20727c6e24b253aceec9ffa9bf9603275bfa5037c53397ab3a5b6bc3c9dac818e66a727c6f39c93c0eb2c68df0
mmproj-model-bf16.gguf888.0 MB (931,145,888 B)e484e3b7e907ed0e0644c0de56c3f5929c7ad5c9c6cc84d35a9d8dc08d461545
model-00001-of-00028.safetensors2.37 GB (2,542,796,928 B)92ed1c3e68262b501d822787a6f39dc77519f1e7a5194eb7014585c0d9c97760
model-00002-of-00028.safetensors1.81 GB (1,943,107,672 B)1b73f760a28a2c0320ea36924b8b3e97c97f4f303564d9b8141835df6a69ddc8
model-00003-of-00028.safetensors1.80 GB (1,930,594,464 B)41f6c39122514c4e145f8444eb46c19caad7c1c93d5a4e742251a95f7eee79e4
model-00004-of-00028.safetensors1.73 GB (1,858,073,840 B)b08e9be181963e7f2b25b9f990a94a1b7e7e00e5f8602d939c083f756439f308
model-00005-of-00028.safetensors1.82 GB (1,952,630,728 B)360ea4390ae371690d64991ab90ce943270f5a4721bf3be378ebfa54afd27075
model-00006-of-00028.safetensors1.73 GB (1,858,073,880 B)40838e78d4827b8ec959489d86484d31a872877ff3649cf48372915814f3b03b
model-00007-of-00028.safetensors1.76 GB (1,889,633,232 B)a14dff178db4c9528a1aca96f5ca614c880c344ebf00211282c0fa5034915d61
model-00008-of-00028.safetensors1.79 GB (1,921,071,440 B)3839575cd9b556df2ca9e49a7c8dc81269dc7430e8892197a412f57b89083a53
model-00009-of-00028.safetensors1.80 GB (1,930,594,496 B)f6bc535a7b911e6483e93c49ab39bc81fe1c9adfb3591f3f85547b1c5ba1535b
model-00010-of-00028.safetensors1.75 GB (1,880,110,176 B)4f5423a5997b10da63799ae12adc30df63b17569455be412bd03cfb768c61b6c
model-00011-of-00028.safetensors1.80 GB (1,930,594,504 B)f66eea52fa1ce82f2ce0c303ddeda35b80f28c9fcda052ce8e77913156b49581
model-00012-of-00028.safetensors1.73 GB (1,858,073,864 B)28204de1451f24d46dddcd1d54ffad8ff388d80c42743da67c9fb1432b5bab95
model-00013-of-00028.safetensors1.82 GB (1,952,630,800 B)744952d16080ec6a55fe6a63f77c0ad9cb8cfe1858894ee21cec7ec32fec93d0
model-00014-of-00028.safetensors1.73 GB (1,858,073,880 B)bde0a5a92e2c605d493f01d561d1a4e0cb078add7c7f956f9b85df17ac138152
model-00015-of-00028.safetensors1.76 GB (1,889,633,232 B)8210cf2fa43a34b25db6437f964bf2aa62094c396d5f169cdca3b9979b5ef05b
model-00016-of-00028.safetensors1.79 GB (1,921,071,440 B)486a4a08741d9d74210c93f439449e39f78f454da6d297e83bd3078d9b34f636
model-00017-of-00028.safetensors1.80 GB (1,930,594,496 B)f10fa5ffcc4683af21df0dbf58edadf753bb5ddf3dea81ccb5d01a78e333f6e9
model-00018-of-00028.safetensors1.75 GB (1,880,110,176 B)649108a637c5f0c849b19137473b8d4842d963145dcf20a6f26411583aa5246d
model-00019-of-00028.safetensors1.80 GB (1,930,594,504 B)7102932fff7b83bb352b101efbe6a5d50a3be6195f842da524702e4b6efccdd4
model-00020-of-00028.safetensors1.73 GB (1,858,073,864 B)46cee6c2d138e375814d79f9e5d055903142b6da321afd6d9cb54b7536ce8a16
model-00021-of-00028.safetensors1.82 GB (1,952,630,800 B)92a8def54809cb89585347ac84750ddc1fc0d796f8c5beaeb25c846b0c4f605d
model-00022-of-00028.safetensors1.73 GB (1,858,073,880 B)01b504170b882e7392ef0e41bc70cc5642b28018ba4e51a3282f43af9b1e0225
model-00023-of-00028.safetensors1.76 GB (1,889,633,232 B)8a062b064c58dceef9007d7c5b1e55c3264ded2bf163cacd6ff92b0da6be0df9
model-00024-of-00028.safetensors1.79 GB (1,921,071,440 B)1293b0d48bdbd047f90f68f5ff352b10d788294b4f7dafe5beb409b1020e6177
model-00025-of-00028.safetensors1.80 GB (1,930,594,496 B)6e7b919f8a64985bcc4ebca1346bcd2e05561141bb0eba9990ca17fbf32ea99f
model-00026-of-00028.safetensors1.75 GB (1,880,110,176 B)d3c1d1d66a5281f2faa015f301a5d0668bfd7e57a0ee5abcdec63a8b4a153785
model-00027-of-00028.safetensors2.37 GB (2,542,796,896 B)2574026178e63a467b018967b2a2ca5542c525ca217b654fb8f447024c70604a
model-00028-of-00028.safetensors1.03 GB (1,101,059,064 B)916afba536e0cd2d023fa5292984390221246ecc14cce55779b4ad833913791f
model.safetensors.index.json111.6 KB (114,303 B)2320ad231c0118ca129708389b8ed928d224070852cb496e0e3c015440685ae9db91ac99b06f77634da0859064d572c9b79299e2
preprocessor_config.json390 B (390 B)2ea84a437d448ff71b08df68fdd949d5cc4ebb6427225450ac9c6529872ee1924fcb0962ff5634834f817040f444118116f4e516
tokenizer.json12.2 MB (12,809,320 B)0997f410c57a1f4e53b09e4be8f4a172d90edd9564368fb0847030937229b9f3
tokenizer_config.json7.5 KB (7,675 B)c2bbd1a8b9c48df16482d03cf8c7a8e119fc1b5f6cb218b6bd3b906b50860087810be4c060c4da70dcbf2c9b09d2cc4dd92fe792

Cite this release

Canonical URL
https://aiseedbank.org/models/OBLITERATUS_Qwen3.8-27B-OBLITERATED--safetensors/
Slug
OBLITERATUS_Qwen3.8-27B-OBLITERATED--safetensors
Infohash
b9856d1541938e89aa3c0c529f9982af87e3a716
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: OBLITERATUS_Qwen3.8-27B-OBLITERATED--safetensors.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryOBLITERATUS/Qwen3.8-27B-OBLITERATED
Revision (pinned)a58c3b53b3ce71551eafde2ed5ec8df48e0f4ff8
Fetched at2026-09-01T05:02:37Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-01T05:12:05Z

apache-2.050.98 GB (54,736,207,107 bytes)mlxsafetensorsggufqwen3_5abliterateduncensoredobliteratusqwen3qwen3.8red-teamai-safety-researchtext-generationconversationalendpoints_compatible