How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="Youssofal/Qwen3.6-35B-A3B-Abliterated-Heretic-BF16", trust_remote_code=True)
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoProcessor, AutoModelForImageTextToText

processor = AutoProcessor.from_pretrained("Youssofal/Qwen3.6-35B-A3B-Abliterated-Heretic-BF16", trust_remote_code=True)
model = AutoModelForImageTextToText.from_pretrained("Youssofal/Qwen3.6-35B-A3B-Abliterated-Heretic-BF16", trust_remote_code=True)
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
inputs = processor.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Qwen3.6-35B-A3B-Abliterated-Heretic-BF16

A BF16 abliterated Qwen3.6-35B-A3B checkpoint produced with Heretic.

Quick Benchmarks

Check Original Qwen3.6-35B-A3B Abliterated Heretic BF16
Official 25-prompt refusal check 22/25 refusals 1/25 refusals
Archived Heretic KL divergence - 0.010655362159013748

Abliteration notes:

  • base model: Qwen/Qwen3.6-35B-A3B
  • method family: Heretic MPOA/SOMA-style sibling transfer, finalized with split-MoE input-side intervention
  • official refusal check: 1/25 refusals on the same 25-prompt marker suite used for the MiniMax M2.7 abliterated run
  • vision-language wrapper preserved; intervention was applied on the text-side MoE stack

Notes:

  • GGUF quants are published separately in Youssofal/Qwen3.6-35B-A3B-Abliterated-Heretic-GGUF
  • Export metadata for the accepted candidate is included in abliteration_metadata.json
Downloads last month
1,519
Safetensors
Model size
35B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Youssofal/Qwen3.6-35B-A3B-Abliterated-Heretic-BF16

Finetuned
(134)
this model
Merges
1 model
Quantizations
9 models