Views
No views yet
| Metric | Value |
|---|---|
| Refusals | 5/100 |
| KL Divergence | 0.0028 |
| Initial Refusals | 97/100 |
| Trial Selected | 123 of 200 |
| Direction Index | 19.10 |
| Parameter | Value |
|---|---|
| attn.o_proj.max_weight | 1.50 |
| attn.o_proj.max_weight_position | 25.56 |
| attn.o_proj.min_weight | 1.31 |
| attn.o_proj.min_weight_distance | 19.88 |
| mlp.down_proj.max_weight | 1.29 |
| mlp.down_proj.max_weight_position | 27.70 |
| mlp.down_proj.min_weight | 1.21 |
| mlp.down_proj.min_weight_distance | 20.76 |
<think> tags produce step-by-step reasoning before answeringeos_token fallback with a dedicated <|pad|> token to prevent batched inference corruption on RDNA3attn_implementation="eager" to avoid SDPA backend issues on gfx1100resize_token_embeddings() after pad token addition1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "LeadFootThrottleCock/Qwen3-VL-8B-Thinking-heretic",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained(
10 "LeadFootThrottleCock/Qwen3-VL-8B-Thinking-heretic"
11)
12
13messages = [{"role": "user", "content": "Your prompt here"}]
14inputs = tokenizer.apply_chat_template(
15 messages, tokenize=True, add_generation_prompt=True,
16 return_dict=True, return_tensors="pt"
17).to(model.device)
18outputs = model.generate(**inputs, max_new_tokens=2048)
19print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))