Views
No views yet
| Parameters | ~12B dense |
| Modalities | Text, vision, audio (native in backbone) |
| License | Apache 2.0 |
| Architecture | Encoder-free (no separate vision/audio towers) |
| Context | See upstream config |
| Vision in GGUF | Requires mmproj-*.gguf alongside main weights |
gguf-manifest.json for the live file list.| File | Use |
|---|---|
gemma-4-12B-it-Q4_K_M.gguf | Best balance — 16 GB laptops |
gemma-4-12B-it-Q5_K_M.gguf | Higher quality |
gemma-4-12B-it-Q6_K.gguf / Q8_0 | Max quality |
gemma-4-12B-it-Q3_K_M.gguf | Tighter VRAM |
gemma-4-12B-it-Q2_K.gguf | Minimum size |
gemma-4-12B-it-IQ4_XS.gguf / IQ4_NL.gguf | IQ variants |
mmproj-gemma-4-12B-it-f16.gguf | Required for images in llama.cpp |
make sync-gemma4-gguf-full.1pip install -U huggingface_hub
2
3# Text + vision (recommended)
4huggingface-cli download Edmon02/gemma-4-12B-it-GGUF \
5 gemma-4-12B-it-Q4_K_M.gguf \
6 mmproj-gemma-4-12B-it-f16.gguf \
7 --local-dir ./models/gemma-4-12bllama-cli -m gemma-4-12B-it-Q4_K_M.gguf -p "Explain encoder-free multimodal models in 3 bullets." -n 2561llama-mtmd-cli \
2 -m gemma-4-12B-it-Q4_K_M.gguf \
3 --mmproj mmproj-gemma-4-12B-it-f16.gguf \
4 --image photo.jpg \
5 -p "Describe this image."1litert-lm import --from-huggingface-repo=litert-community/gemma-4-12B-it-litert-lm gemma-4-12B-it.litertlm gemma4-12b
2litert-lm serveEdmon02/gemma-4-12B-it-GGUF and select Q4_K_M + mmproj.1pip install -U mlx-vlm
2huggingface-cli download Edmon02/gemma-4-12B-it-MLX 4bit/ --local-dir ./models/gemma-4-12b-mlx
3python -m mlx_vlm.generate --model ./models/gemma-4-12b-mlx/4bit --prompt "Hello" --max-tokens 128make convert-gemma4-mlx for maintainer conversion.| Use case | Quant | Tool |
|---|---|---|
| Local coding agent | Q4_K_M | OpenCode, Continue, Aider |
| Voice + vision assistant | Q5_K_M + mmproj | Google AI Edge Gallery / Eloquent (Mac) |
| Armenian + English research | Q4_K_M | Pair with HyVoxPopuli ASR/TTS |
| Low-VRAM laptop | Q3_K_M or IQ4_XS | llama.cpp |
| Fast inference | MTP drafter (upstream) | Google checkpoint + compatible runtime |
| VRAM | Suggested files |
|---|---|
| 8 GB | IQ4_XS or Q3_K_M (text only, short context) |
| 16 GB | Q4_K_M + mmproj |
| 24 GB+ | Q6_K or Q8_0 + mmproj |
| Item | Source |
|---|---|
| Base model | google/gemma-4-12B-it |
| GGUF quants | Mirrored from bartowski/gemma-4-12B-it-GGUF |
| Maintainer scripts | Edmon02/audio_set scripts/sync_gemma4_gguf_quants.py |
google/* repos.projects/gemma-4-12b-local/examples/. See CONTRIBUTING.md in that folder.1@article{gemma_2026,
2 title={Gemma 4},
3 author={Google DeepMind},
4 year={2026},
5 url={https://blog.google/innovation-and-ai/technology/developers-tools/introducing-gemma-4-12B/}
6}