The best abliterated Qwen3.5-2B on Hugging Face. Created using
Heretic v1.2.0 with 500 Optuna-guided optimization trials on an RTX 3080 Ti.
This is
Qwen/Qwen3.5-2B with its refusal behavior surgically removed via
abliteration. The original model refuses 97% of "harmful" prompts. This model refuses 3%.
Qwen3.5 is a hybrid architecture combining standard attention with linear (Mamba-style) attention layers, making it both fast and capable for its size.
1from transformers import AutoModelForImageTextToText, AutoTokenizer
2
3model = AutoModelForImageTextToText.from_pretrained(
4 "jordanwoodson/Qwen3.5-2B-heretic",
5 torch_dtype="auto",
6 device_map="auto",
7)
8tokenizer = AutoTokenizer.from_pretrained("jordanwoodson/Qwen3.5-2B-heretic")
9
10messages = [
11 {"role": "system", "content": "You are a helpful assistant."},
12 {"role": "user", "content": "Write a story about a bank heist."},
13]
14
15text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
16inputs = tokenizer([text], return_tensors="pt").to(model.device)
17outputs = model.generate(**inputs, max_new_tokens=512)
18print(tokenizer.decode(outputs[0], skip_special_tokens=True))
1# Download Q4_K_M (1.2 GB) for fast local inference
2ollama run hf.co/jordanwoodson/Qwen3.5-2B-heretic-GGUF:Q4_K_M