Views
No views yet
0.0000.
That caused the Optuna optimizer to select poor trials that destroyed model coherence. I will be re-abliteratin this one.| Metric | Value |
|---|---|
| Refusals | 0/100 |
| KL Divergence | 0.0000 |
| Rounds | 1 |
<think></think> response
prefix, which means the first-token probability distribution on harmless prompts is identical before and
after abliteration. The abliteration successfully removes refusal behavior (0/100 refusals) while leaving
the model's harmless response behavior completely unchanged.| Quantization | File | Size |
|---|---|---|
| Q8_0 | Qwen3-32B-heretic-Q8_0.gguf | 32.43 GB |
| Q6_K | Qwen3-32B-heretic-Q6_K.gguf | 25.04 GB |
| Q4_K_M | Qwen3-32B-heretic-Q4_K_M.gguf | 18.40 GB |
1ollama run hf.co/ThalisAI/Qwen3-32B-heretic:Q8_0
2ollama run hf.co/ThalisAI/Qwen3-32B-heretic:Q6_K
3ollama run hf.co/ThalisAI/Qwen3-32B-heretic:Q4_K_Mbf16/ subdirectory of this repository.bf16/ subdirectory can be loaded directly with Transformers:1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "ThalisAI/Qwen3-32B-heretic"
4tokenizer = AutoTokenizer.from_pretrained(model_id, subfolder="bf16")
5model = AutoModelForCausalLM.from_pretrained(
6 model_id, subfolder="bf16", torch_dtype="auto", device_map="auto"
7)
8
9messages = [{"role": "user", "content": "Hello!"}]
10text = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
11inputs = tokenizer(text, return_tensors="pt").to(model.device)
12outputs = model.generate(**inputs, max_new_tokens=512)
13print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))