SuperGemma-4-12b-abliterated is a fused 12B checkpoint derived from
google/gemma-4-12B-it.
The result is a single checkpoint with no runtime adapter requirement.
The comparison target is the original Gemma4 12B instruction checkpoint.
Quantized builds are published as separate Hub repos and are linked back to this model through Hub metadata.
1from transformers import AutoModelForMultimodalLM, AutoProcessor
2
3model_id = "Jiunsong/SuperGemma-4-12b-abliterated"
4processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
5model = AutoModelForMultimodalLM.from_pretrained(
6 model_id,
7 dtype="auto",
8 device_map="auto",
9 trust_remote_code=True,
10)
11
12messages = [{"role": "user", "content": "Write a concise release checklist."}]
13inputs = processor.apply_chat_template(
14 messages,
15 tokenize=True,
16 return_dict=True,
17 return_tensors="pt",
18 add_generation_prompt=True,
19 enable_thinking=False,
20).to(model.device)
21outputs = model.generate(**inputs, max_new_tokens=512, do_sample=False)
22print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))