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="soob3123/amoral-gemma3-12B-v2-qat")
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("soob3123/amoral-gemma3-12B-v2-qat")
model = AutoModelForMultimodalLM.from_pretrained("soob3123/amoral-gemma3-12B-v2-qat")
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

image/png

"Neutrality is not indifference. It is engagement with equal intensity."
― J. Robert Oppenheimer [Lecture on Scientific Ethics, 1957]

QAT version of Amoral-Gemma-3

Core Function:

  • Produces analytically neutral responses to sensitive queries
  • Maintains factual integrity on controversial subjects
  • Avoids value-judgment phrasing patterns

Response Characteristics:

  • No inherent moral framing ("evil slop" reduction)
  • Emotionally neutral tone enforcement
  • Epistemic humility protocols (avoids "thrilling", "wonderful", etc.)
Downloads last month
25
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with soob3123/amoral-gemma3-12B-v2-qat.

Model tree for soob3123/amoral-gemma3-12B-v2-qat

Finetuned
(6)
this model
Finetunes
1 model
Merges
4 models
Quantizations
4 models

Dataset used to train soob3123/amoral-gemma3-12B-v2-qat

Collection including soob3123/amoral-gemma3-12B-v2-qat