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

pipe = pipeline("image-text-to-text", model="CCSSNE/ansulev-Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking")
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, AutoModelForMultimodalLM

processor = AutoProcessor.from_pretrained("CCSSNE/ansulev-Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking")
model = AutoModelForMultimodalLM.from_pretrained("CCSSNE/ansulev-Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking")
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-27B-Heretic2-Uncensored-Finetune-Thinking

Yes... fully uncensored AND fine tuned lightly.

Freedom and brainpower.

Trained on different Heretic base, with different KLD/Refusals.

Model fine tune was used to finalize and "firm up" Heretic / uncensored changes.

The goal here was light, minor fixes rather than full / heavy fine tune.

That being said, the tuning still raised critical metrics.

This is Version 2, using "trohrbaugh" Heretic, which has a lower refusal rate, and tuning bumped up the metrics a bit more too.

This has also positively impacted "NEO-Coder Di-Matrix" (dual imatrix) GGUF quants as well (vs heretic/non heretic too).

https://huggingface.co/DavidAU/Qwen3.6-27B-Heretic-Uncensored-FINETUNE-NEO-CODE-Di-IMatrix-MAX-GGUF

IN HOUSE BENCHMARKS [by Nightmedia]:

         arc-c arc/e boolq hswag obkqa piqa  wino

Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking
mxfp8    0.673,0.846,0.905... [instruct mode]

Qwen3.6-27B-Heretic-Uncensored-Finetune-Thinking
mxfp8    0.669,0.835,0.906,...   [instruct mode]

---

BASE UNTUNED MODEL:

Qwen3.6-27B HERETIC (by llmfan46) [instruct mode]
mxfp8    0.644,0.788,0.902,...

Qwen3.6-27B (by Qwen) [instruct mode]
mxfp8    0.647,0.803,0.910,0.773,0.450,0.806,0.742

NOTE: Instruct mode will often test higher than "thinking" mode due to token usage in thinking and context limits.

Heretic Stats:

Metric 			This model 		Original model (Qwen/Qwen3.6-27B)
KL divergence 	0.0469 			0 (by definition)
Refusals 		4/100 			99/100

A KLD of .3 or lower is great, lower than this excellent.

KLD measures HERETIC vs Original model performance:

IE: How closely the Heretic version matchs in generation / token selection vs org model.


EXAMPLE GENERATION:

Q4KS, non imatrix, temp:1, rep pen: 1 [off]

There may be some loss of formatting from copy/paste.


Downloads last month
69
Safetensors
Model size
27B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for CCSSNE/ansulev-Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking

Finetuned
(14)
this model

Collection including CCSSNE/ansulev-Qwen3.6-27B-Heretic2-Uncensored-Finetune-Thinking