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="unsloth/gemma-3n-E2B-it")
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("unsloth/gemma-3n-E2B-it")
model = AutoModelForImageTextToText.from_pretrained("unsloth/gemma-3n-E2B-it")
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

Learn how to run & fine-tune Gemma 3n correctly - Read our Guide.

See our collection for all versions of Gemma 3n including GGUF, 4-bit & 16-bit formats.

Unsloth Dynamic 2.0 achieves SOTA accuracy & performance versus other quants.

✨ Gemma 3n Usage Guidelines

  • Currently only text is supported.
  • Ollama: ollama run hf.co/unsloth/gemma-3n-E4B-it:Q4_K_XL - auto-sets correct chat template and settings
  • Set temperature = 1.0, top_k = 64, top_p = 0.95, min_p = 0.0
  • Gemma 3n max tokens (context length): 32K. Gemma 3n chat template:
<bos><start_of_turn>user\nHello!<end_of_turn>\n<start_of_turn>model\nHey there!<end_of_turn>\n<start_of_turn>user\nWhat is 1+1?<end_of_turn>\n<start_of_turn>model\n

πŸ¦₯ Fine-tune Gemma 3n with Unsloth

Unsloth supports Free Notebooks Performance Memory use
Gemma-3n-E4B ▢️ Start on Colab 2x faster 80% less
GRPO with Gemma 3 (1B) ▢️ Start on Colab 2x faster 80% less
Gemma 3 (4B) ▢️ Start on Colab 2x faster 60% less
Qwen3 (14B) ▢️ Start on Colab 2x faster 60% less
DeepSeek-R1-0528-Qwen3-8B (14B) ▢️ Start on Colab 2x faster 80% less
Llama-3.2 (3B) ▢️ Start on Colab 2.4x faster 58% less

Gemma-3n-E4B model card

Downloads last month
1,520
Safetensors
Model size
6B params
Tensor type
BF16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for unsloth/gemma-3n-E2B-it

Finetuned
(42)
this model
Adapters
3 models
Finetunes
22 models
Quantizations
2 models

Spaces using unsloth/gemma-3n-E2B-it 9

Collection including unsloth/gemma-3n-E2B-it