Views
No views yet

mmproj) is
included, so you can run text and image + text. (Audio tensors exist in
the unified projector but are experimental in llama.cpp.)| File | Purpose | Size |
|---|---|---|
FabGemma-Q4_K_M.gguf | Text model, 4-bit (recommended) | ~7.4 GB |
FabGemma-Q8_0.gguf | Text model, 8-bit (higher quality) | ~12.7 GB |
FabGemma-mmproj-F16.gguf | Vision projector (recommended) | ~0.12 GB |
FabGemma-mmproj-Q8_0.gguf | Vision projector (alt) | ~0.16 GB |
Requires a recent llama.cpp build with Gemma 4 support (architecturegemma4/ projectorgemma4uv). Older builds cannot load these.
1llama-cli -hf naazimsnh02/FabGemma-GGUF:Q4_K_M --jinja -p "Tell me a short fable about a fox."
2# or local:
3llama-cli -m FabGemma-Q4_K_M.gguf --jinja -p "Tell me a short fable about a fox."1llama-mtmd-cli \
2 -m FabGemma-Q4_K_M.gguf \
3 --mmproj FabGemma-mmproj-F16.gguf \
4 --image your_image.png \
5 --jinja \
6 -p "Describe this image in one sentence."llama-server works too — pass both -m and --mmproj and use the OpenAI-style
chat endpoint with image content parts.--jinja is required (the chat template is a Jinja template).convert_hf_to_gguf.py (text) and convert_hf_to_gguf.py --mmproj
(vision). FabGemma ships no preprocessor_config.json; the mmproj was built
with Gemma 4 image normalization image_mean=[0,0,0], image_std=[1,1,1].