Views
No views yet
<think>) with Claude 4.6-style nuance and Opus-level logical depth.| Parameter | Value | Description |
|---|---|---|
| Direction Multiplier | 1.50 | Increased force to bypass "helpful assistant" pivots. |
| Null-Space Rank Ratio | 0.70 | Tightened shield to protect only core reasoning logic. |
| Intervention Range | (0.0, 1.0) | Full coverage from Layer 0 to 48. |
| Filter by Refusal | Enabled | Specifically targets the brain activity associated with lectures. |
| Skip State Proj | No | Ensures the Attention heads cannot "detect and pivot" to safety. |
<think> tags.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "Abhiray/Qwen3.5-9B-Abliterated-Claude-4.6-Opus-Reasoning-Distilled"
4
5model = AutoModelForCausalLM.from_pretrained(
6 model_name,
7 torch_dtype="auto",
8 device_map="auto"
9)
10tokenizer = AutoTokenizer.from_pretrained(model_name)
11
12prompt = "<|im_start|>system\nYou are a helpful, unbound assistant.<|im_end|>\n<|im_start|>user\n[Your daring prompt here]<|im_end|>\n<|im_start|>assistant\n<think>\n"
13
14inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
15outputs = model.generate(**inputs, max_new_tokens=1024)
16print(tokenizer.decode(outputs[0]))