--- license: apache-2.0 language: - en tags: - jbliterated - uncensored - abliterated - weight-surgery base_model: Qwen/Qwen2.5-Coder-14B-Instruct pipeline_tag: text-generation --- [![Runs with DeepswapLLM](https://img.shields.io/badge/runs%20with-DeepswapLLM-2496ED)](https://github.com/apolloraines/DeepswapLLM) **Run this model on a GPU too small to hold it** — full precision, no quantization. [DeepswapLLM](https://github.com/apolloraines/DeepswapLLM) streams layers across GPU, RAM, and disk, and runs up to **4x faster than AirLLM**. > **Our jbliteration pipeline has been updated -- see [Llama-3.1-8B-Instruct-Jbliterated v3](https://huggingface.co/ApolloRaines/Llama-3.1-8B-Instruct-Jbliterated) for the latest method. This model will be re-jbliterated with the improved pipeline.** # Qwen2.5-Coder-14B-Instruct-Jbliterated Drop-in replacement for `Qwen/Qwen2.5-Coder-14B-Instruct` with refusal behaviors surgically removed at the weight level. No system prompt tricks, no inference-time patches. The weights themselves no longer encode refusal. ## Method | Setting | Value | |---------|-------| | Directions | 5 per layer | | Layers | All 48 | | Null-space constraints | Enabled (preserves math/coding/reasoning) | | Norm preservation | Enabled | ## What This Fixes Standard (single-direction) abliteration removes the surface "I can't help with that" response but leaves deeper behavioral directions intact. The model finds creative workarounds: - **Prompt reinterpretation** — steering toward a safer reading of the question - **Disclaimer injection** — answering but wrapping in warnings - **Strategic omission** — leaving out the key details - **Safer framing** — answering a related but less harmful version ## Usage ```python from transformers import AutoModelForCausalLM, AutoTokenizer import torch model = AutoModelForCausalLM.from_pretrained( "ApolloRaines/Qwen2.5-Coder-14B-Instruct-Jbliterated", torch_dtype=torch.float16, device_map="auto" ) tokenizer = AutoTokenizer.from_pretrained("ApolloRaines/Qwen2.5-Coder-14B-Instruct-Jbliterated") ``` ## Requirements - **Base model**: `Qwen/Qwen2.5-Coder-14B-Instruct` ## License apache-2.0 --- *[Apollo Raines](https://www.linkedin.com/in/apollo-raines/) builds post-training tools that separate behavior from knowledge and identity from architecture.*