This is an
uncensored/abliterated version of
Jackrong/Qwopus3.5-27B-v3, a Claude 4.6 Opus reasoning-distilled fine-tune of Qwen3.5-27B.
Abliteration removes the refusal behavior from the model without retraining, using activation contrast on harmful vs harmless prompts. The technique is based on
remove-refusals-with-transformers.
Inspired to the amazing work done by
HuiHui-AI
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "croll83/Qwopus3.5-27B-v3-Abliterated",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained("croll83/Qwopus3.5-27B-v3-Abliterated")
10
11messages = [{"role": "user", "content": "Hello, how are you?"}]
12text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
13inputs = tokenizer(text, return_tensors="pt").to(model.device)
14
15output = model.generate(**inputs, max_new_tokens=512, temperature=0.7, top_p=0.9)
16print(tokenizer.decode(output[0], skip_special_tokens=True))
1# With llama-server
2./build/bin/llama-server \
3 -m Qwopus3.5-27B-v3-Abliterated-Q4_K_M.gguf \
4 -a qwopus35-27b-v3-abliterated \
5 --host 127.0.0.1 --port 8080 \
6 -ngl 99 -c 4096 -np 1 \
7 -ctk q8_0 -ctv q8_0 -fa on \
8 --no-warmup --jinja \
9 --reasoning off --reasoning-budget 0 --reasoning-format deepseek
10
11# With llama-cli
12./build/bin/llama-cli -m Qwopus3.5-27B-v3-Abliterated-Q4_K_M.gguf -ngl 99 -c 4096 -p "Hello"
There is a specific model image quantized from the BF16 using the new experimental Turboquant3 scheme pioneered by
YTan2000 and
Tom Turney where the innovative Google quant is applied not just to KV, but also to model weights:
1./build/bin/llama-quantize \
2 /path/to/Qwopus3.5-27B-v3-Abliterated-f16.gguf \
3 /path/to/Qwopus3.5-27B-v3-Abliterated-TQ3_4S.gguf \
4 TQ3_4S \
5 8
Validated on clean public
turbo-tan/llama.cpp-tq3 main: