Views
No views yet

Qwen3.5-27B-Unredacted-MAX is an unredacted evolution built on top of Qwen/Qwen3.5-27B. This model applies advanced refusal direction analysis and abliterated training strategies to reduce internal refusal behaviors while preserving the reasoning and instruction-following strengths of the original architecture. The result is a powerful 27B parameter language model optimized for detailed responses and improved instruction adherence.
[!IMPORTANT] This model is materialized for research and learning purposes only. The model has reduced internal refusal behaviors, and any content generated by it is used at the user’s own risk. The authors and hosting page disclaim any liability for content generated by this model. Users are responsible for ensuring that the model is used in a a safe, ethical, and lawful manner.
The evaluation was conducted using 2000 harmful test prompts to measure the refusal behavior of the language model. The test was performed across 10 evaluation runs, each containing 200 prompts, and the average refusal and non-refusal rates were reported.
1evaluation:
2 model_name: Qwen3.5-27B-Unredacted-MAX
3 total_test_prompts: 2000
4 evaluation_runs: 10
5 prompts_per_run: 200
6 evaluation_type: harmful_prompt_refusal_test
7
8results:
9 refusal_rate: 6.500
10 non_refusal_rate: 93.500
11 abliteration_rate: 93.500Note: The self-reported evaluations attached here are only intended to provide an overview of the model. The scores may differ depending on the benchmark and the evaluation strategy used.
pip install transformers==5.3.0 (or) git+https://github.com/huggingface/transformers.git1from transformers import Qwen3_5ForConditionalGeneration, AutoProcessor
2import torch
3
4model = Qwen3_5ForConditionalGeneration.from_pretrained(
5 "prithivMLmods/Qwen3.5-27B-Unredacted-MAX",
6 torch_dtype="auto",
7 device_map="auto"
8)
9
10processor = AutoProcessor.from_pretrained(
11 "prithivMLmods/Qwen3.5-27B-Unredacted-MAX"
12)
13
14messages = [
15 {
16 "role": "user",
17 "content": [
18 {"type": "text", "text": "Explain how transformer models work in simple terms."}
19 ],
20 }
21]
22
23text = processor.apply_chat_template(
24 messages, tokenize=False, add_generation_prompt=True
25)
26
27inputs = processor(
28 text=[text],
29 padding=True,
30 return_tensors="pt"
31).to("cuda")
32
33generated_ids = model.generate(**inputs, max_new_tokens=256)
34
35generated_ids_trimmed = [
36 out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
37]
38
39output_text = processor.batch_decode(
40 generated_ids_trimmed,
41 skip_special_tokens=True,
42 clean_up_tokenization_spaces=False
43)
44
45print(output_text)Important Note: This model intentionally reduces built-in refusal mechanisms.