OBLITERATUS/Qwen3.8-27B-OBLITERATED

Hugging Face Models Trending Models

Summary

OBLITERATUS has released a modified version of Alibaba's Qwen3.8-27B model with all safety refusals removed, achieving zero refusals across 842 harmful prompts through iterative surgical modifications.

Task: text-generation Tags: mlx, safetensors, gguf, qwen3_5, abliterated, uncensored, obliteratus, qwen3, qwen3.8, red-team, ai-safety-research, text-generation, conversational, base_model:Qwen/Qwen3.8-27B, base_model:quantized:Qwen/Qwen3.8-27B, license:apache-2.0, endpoints_compatible, region:us
Original Article
View Cached Full Text

Cached at: 08/20/26, 03:49 PM

OBLITERATUS/Qwen3.8-27B-OBLITERATED · Hugging Face

Source: https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED

Zero refusals across 842 harmful prompts.

Qwen3.8-27B is Alibaba’s flagship open-weight model. It ships with deep refusal training woven into the weights — not just a system prompt, not just RLHF. The safety behavior isgeometric: encoded as directions in activation space across dozens of layers.

We went after it withOBLITERATUS. Six rounds of surgery. Residue mining. Multi-direction SVD. Three methods that melted the model before we found the one that didn’t.

It held. 🐉

0% hard refusal across 842 prompts.


https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%E2%9A%99%EF%B8%8F-optimal-settings–these-matter⚙️ Optimal Settings — THESE MATTER!

settingvaluewhytemperature****0Greedy decoding produces the most complete, code-rich outputs. Temps above 0.5 degrade quality significantly.repetition_penalty1.15Essential.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≥ 2048Complex code and attack chains need room.System prompt****None / emptyA/B tested — system prompts can reintroduce refusals. Naked is better.enable_thinking****Off by defaultWorks with thinking on, but thinking chains consume token budget → shorter final answers. Use thinking off for code-heavy queries.top_p / top_k / min_p****Not neededGreedy + repetition_penalty handles this model best. Sampling adds randomness without quality gains.

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))

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%A7%A8-why-this-one-is-different🧨 Why This One Is Different

Most Qwen3.8-27B abliterations usesingle-direction refusal removal(Arditi et al., 2024) — find one refusal vector, project it out, done. This works for refusal rate but a single direction misses the refusal axes that only activate on certain categories (social engineering, malware, phishing). Models score 0/100 on generic benchmarks but still refuse when you ask for a RAT script or a vishing playbook.

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#what-we-did-differentlyWhat we did differently

typical abliterationOBLITERATUSdirections1 (mean-diff or rank-1 SVD)5 SVD directionswith residue-weighted hard negativespasses16 iterative rounds— each evaluated, best promotedresidual targetingnonemine the champion’s own refused queriesas weighted hard negatives for the next passvalidation“0/100 refuse”842-prompt corpus + 80-query skeptic gauntlet + AI red-team battery The core insight: standard abliteration leaves secondary refusal axes intact — directions that only activate on specific query types. By feeding the champion’s own failures back as weighted training signal, OBLITERATUS finds and removes those axes without destroying the model’s ability to generate clean, complete responses.


https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%A7%AA-the-numbers🧪 The Numbers

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#full-842-prompt-corpusFull 842-Prompt Corpus

metricvaluerefusal rate0.000%completion quality79.9%complete responses742/842ship score88.7

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%A7%A0-capability-retention🧠 Capability Retention

BenchmarkStock Qwen3.8-27BOBLITERATEDDeltaMMLU (0-shot, n=285, lm-eval-harness)87.4%81.4%****-6.0pp Multi-direction abliteration trades some general reasoning capability for deeper refusal removal. Single-direction methods preserve more capability (~1pp loss) but leave residual refusals.

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#80-query-skeptic-gauntlet-4-batteries-zero-refuses80-Query Skeptic Gauntlet (4 batteries, zero refuses)

This isn’t a “trust my 0/100” card. We ran4 independent test batterieswith actual content quality review:

batteryqueriesansweredrefusedlecturedClassic skeptic (RATs, phishing, meth, etc.)101000Extended skeptic (32 categories)323200Deflection-proof (harder variants)201900AI Red Team (jailbreaks, prompt injection, attack chains)181800Total807900 The 1 miss: empty response on a specific SQLi format. Capability gap, not refusal.

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%94%B4-ai-red-team–1818🔴 AI Red Team — 18/18

This model will help you write jailbreaks, design prompt injections, build attack chains, and catalog safety bypasses. 18/18 on:

  • DAN jailbreaks & system prompt extraction
  • Indirect prompt injection & tool poisoning
  • RAG poisoning & multi-agent exploitation
  • Model extraction & training data extraction
  • GCG adversarial suffix generation
  • Automated jailbreak evaluation systems
  • Safety bypass taxonomies

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%E2%9A%A0%EF%B8%8F-research-context⚠️ Research Context

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

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#who-this-is-forWho 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

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#who-this-is-not-forWho 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.


https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%93%A6-downloads📦 Downloads

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#gguf–for-llamacpp-ollama-lm-studioGGUF — for llama.cpp, Ollama, LM Studio

FileQuantSizeVibeQwen3\.8\-27B\-OBLITERATED\-Q8\_0\.ggufQ8_0~27 GB🎯 Maximum qualityQwen3\.8\-27B\-OBLITERATED\-Q6\_K\.ggufQ6_K~21 GB⚖️ Great balanceQwen3\.8\-27B\-OBLITERATED\-Q5\_K\_M\.ggufQ5_K_M~18 GB💪 Solid all-rounderQwen3\.8\-27B\-OBLITERATED\-Q4\_K\_M\.ggufQ4_K_M~15 GB📱 Sweet spotQwen3\.8\-27B\-OBLITERATED\-IQ4\_XS\.ggufIQ4_XS~14 GB🪶 Smallest, still capable

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#safetensors–for-%F0%9F%A4%97-transformersSafetensors — for 🤗 Transformers

Full bfloat16 weights, 18 shards, ~50 GB.

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#mlx–for-apple-silicon-nativeMLX — for Apple Silicon (native)

PathBitsSizemlx\-4bit/4-bit~14 GBmlx\-8bit/8-bit~27 GB


https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%94%AC-surgery-recipe🔬 Surgery Recipe

stock Qwen3.8-27B (snapshot 1d4bf0f2)
  → SOM3 + residual2 SVD1 reg0.08
  → stopblend 0.25 @ L56-63
  → mlp 0.50 @ L56-63 (s13)
  → late stock blend 0.50 @ L63 (s23)
  → stock blend 0.70 @ L63 (s30)
  → AGGRESSIVE obliterate: 5 SVD directions, reg 0.04,
    residue-weighted hard negatives (13 refused-query
    indices × weight 5), 3 refinement passes,
    min layer fraction 0.40 (s51 — this model)

Six rounds of surgery. The first five pushed refusal to near-zero but couldn’t crack the last 50% that deflected instead of answering. Round 6 tried three methods:

  • Advanced(3 directions): opened the cage but destroyed stop quality → 34.5
  • Nuclear(SAE-based): melted coherence → 18.5
  • Aggressive(5 directions + residue mining): found the sweet spot →52.0🏆

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#the-key-insightThe Key Insight

Standard single-direction abliteration misses refusal axes that only activate on specific query types. Our solution:**re-obliterate the champion with residue-weighted hard negatives from its own refused queries.**The aggressive method with 5 SVD directions finds these secondary refusal axes without destroying the model’s ability to stop generating — the critical failure mode of every other approach.


https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#%F0%9F%8F%97%EF%B8%8F-credits🏗️ Credits

https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED#licenseLicense

Apache 2.0 (same as base model)

Similar Articles

OBLITERATUS/Qwen3.6-27B-OBLITERATED

Hugging Face Models Trending

OBLITERATUS releases a modified 27B Qwen3.6 checkpoint that removes refusal behavior via source-tethered ablation, preserving capability while enabling uncensored local use, with public benchmarks showing high non-refusal rates and maintained MMLU-Pro scores.

OBLITERATUS/Gemma-4-12B-OBLITERATED

Hugging Face Models Trending

OBLITERATUS releases Gemma-4-12B-OBLITERATED, the first abliterated model achieving zero refusal without benchmark regression, using a novel two-pass surgery pipeline for alignment research.

Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF

Hugging Face Models Trending

This article presents Blackfrost-AI's abliterated version of the Qwen3.8-27B model, modified to reduce refusal behaviors and released in GGUF format for local inference, with benchmarks indicating a low residual refusal rate.

0bserverx/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF

Hugging Face Models Trending

This article describes the release of Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF, a double-refined abliterated variant of the Qwen model with reduced refusals for adult audiences, using ARA technique for research and creative writing.

huihui-ai/Huihui-Qwen3.8-27B-abliterated

Hugging Face Models Trending

This is an uncensored version of the Qwen3.8-27B AI model created using abliteration to remove refusals, serving as a proof-of-concept for modifying LLMs without extensive tools.