Edmon02/gemma-4-12B-it-GGUF
02k
Gemma 4 12B Instruction-Tuned — GGUF (multimodal)
Community GGUF mirror of google/gemma-4-12B-it for local, encoder-free multimodal AI on consumer hardware (~16 GB VRAM).
Announced June 2026: Google blog · Developer guide
Why this repo exists
- One download hub for all major quants (K-quants, IQ, Q8, mmproj).
- Fast Hub-side sync from bartowski/gemma-4-12B-it-GGUF — no re-upload from your laptop.
- Documented use cases for contributors: gemma-4-12b-local (agents, LiteRT, llama.cpp, MLX).
- Apple Silicon MLX quants: Edmon02/gemma-4-12B-it-MLX
Available files
See `gguf-manifest.json` for the live file list.
Essential tier (recommended)
Full tier
All bartowski quants (Q2KL, Q3KXL, Q40, Q41, bf16, imatrix, etc.) — run make sync-gemma4-gguf-full.
Download
pip install -U huggingface_hub
# Text + vision (recommended)
huggingface-cli download Edmon02/gemma-4-12B-it-GGUF \
gemma-4-12B-it-Q4_K_M.gguf \
mmproj-gemma-4-12B-it-f16.gguf \
--local-dir ./models/gemma-4-12bAccept the license on google/gemma-4-12B-it before using weights.
Quick start
llama.cpp (text)
llama-cli -m gemma-4-12B-it-Q4_K_M.gguf -p "Explain encoder-free multimodal models in 3 bullets." -n 256llama.cpp (image + text)
llama-mtmd-cli \
-m gemma-4-12B-it-Q4_K_M.gguf \
--mmproj mmproj-gemma-4-12B-it-f16.gguf \
--image photo.jpg \
-p "Describe this image."LiteRT-LM (OpenAI-compatible local server)
litert-lm import --from-huggingface-repo=litert-community/gemma-4-12B-it-litert-lm gemma-4-12B-it.litertlm gemma4-12b
litert-lm serveLM Studio / Ollama
Import Edmon02/gemma-4-12B-it-GGUF and select Q4_K_M + mmproj.
Apple Silicon (MLX)
Native inference on M-series Macs via mlx-vlm (not mlx-lm — Gemma 4 is multimodal):
pip install -U mlx-vlm
huggingface-cli download Edmon02/gemma-4-12B-it-MLX 4bit/ --local-dir ./models/gemma-4-12b-mlx
python -m mlx_vlm.generate --model ./models/gemma-4-12b-mlx/4bit --prompt "Hello" --max-tokens 128See Edmon02/gemma-4-12B-it-MLX and make convert-gemma4-mlx for maintainer conversion.
Use cases
Hardware guide
Provenance
Limitations
- Community quants — validate quality on your tasks vs official BF16.
- Audio in GGUF may require latest llama.cpp / LM Studio builds.
- Gated upstream — HF token + license acceptance required for
google/*repos.
Contributing
Add recipes under projects/gemma-4-12b-local/examples/. See CONTRIBUTING.md in that folder.
Citation
@article{gemma_2026,
title={Gemma 4},
author={Google DeepMind},
year={2026},
url={https://blog.google/innovation-and-ai/technology/developers-tools/introducing-gemma-4-12B/}
}