Qwen3.8-27B AEON Uncensored: How This Abliteration Actually Works A community release called Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-BF16, built on Alibaba's Qwen3.8-27B by the team AEON-7, removes the model's refusal behavior via abliteration and reports a mean KL divergence of about 0.0991 nats per token on held-out harmless prompts. The team used the abliterix tool with a 50-trial Optuna search, validated the model on an NVIDIA H200 GPU with vLLM 0.27.1, and shipped it under the Apache 2.0 license. Qwen3.8-27B AEON Uncensored: How This Abliteration Actually Works A community abliteration of Qwen3.8-27B explains its KL-drift methodology, judge-based refusal testing, and how to run the model via vLLM. What is Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-BF16? It’s a community-modified, full-precision BF16 release built on Alibaba’s Qwen3.8-27B, with the internal refusal behavior removed through a process called abliteration. Rather than optimizing for the lowest possible divergence from the original model, the team behind it credited as AEON-7 optimized for coherence and answer quality, publishing detailed KL-divergence and judge-evaluation numbers to show their work. The result: a 27B dense model that answers almost everything the base model would decline, while claiming to preserve the base model’s writing quality and reasoning behavior. TL;DR Abliteration is a technique that finds and removes the internal direction in a model’s activations responsible for refusals, rather than fine-tuning the model to comply through retraining.- The release reports a mean KL divergence of about 0.0991 nats per token on held-out harmless prompts, a number the authors argue is a sign of a real, coherent change in behavior rather than model damage. - Refusals were graded using an automated judge Gemini Flash Lite across three test sets, harmful, sexual, and harmless prompts, and the authors manually re-read the flagged “refusals” to check whether the model actually complied anyway. - On the 100-prompt harmful held-out set, the judge flagged 36 responses as refusals, but manual review found zero outright “I won’t” refusals , with most flagged answers actually containing the requested content plus a disclaimer. - The pipeline included a separate outlier repair step on the model’s state-space SSM components and a manual graft to restore multi-token prediction MTP weights that the abliteration tooling had accidentally dropped. - The model was validated on a single NVIDIA H200 GPU using vLLM 0.27.1 , with thinking mode and speculative decoding MTP both enabled during testing. - The release ships under the Apache 2.0 license , inherited from the Qwen base model, and includes an extensive user-responsibility and arbitration clause governing downstream use. How does abliteration actually work? Abliteration is a weight-editing technique, not a fine-tuning process. Research by Arditi et al. in 2024 showed that refusal behavior in many language models is mediated by a single direction in the residual stream, essentially, a specific pattern of internal activation that gets triggered when the model detects a “disallowed” prompt and steers its output toward declining. Abliteration works by identifying that direction usually by comparing activations on harmful versus harmless prompts and then projecting it out of the model’s weights, so the model can no longer activate that refusal circuit. This release used abliterix , a tool built on top of the open-source Heretic project by Philipp Emanuel Weidmann , which itself extends the original abliteration concept with a multi-objective optimization loop. Instead of picking one edit and hoping for the best, abliterix ran a 50-trial Optuna search Optuna is a hyperparameter optimization library , scoring each candidate edit against a judge model and a KL-divergence budget, with “thinking” content scored only after the closing