NVFP4 GGUF conversions derived from the Quantization-Aware Training (QAT) checkpoint of Gemma 4 26B A4B IT (
google/gemma-4-26B-A4B-it-qat-q4_0-unquantized).
This repository provides multiple GGUF quantization levels, making the model usable with
llama.cpp and other GGUF-compatible inference engines.
1# Run text-only inference
2./llama-cli \
3 -m gemma-4-26b-a4b-qat-nvfp4.gguf \
4 -p "Explain quantum computing in simple terms." \
5 --temp 1.0 --top-k 64 --top-p 0.95
1# Text-only
2./llama-server \
3 -m gemma-4-26b-a4b-qat-nvfp4.gguf \
4 --host 0.0.0.0 --port 8080
5
6# Multimodal (image + audio)
7./llama-server \
8 -m gemma-4-26b-a4b-qat-nvfp4.gguf \
9 --mmproj mmproj.gguf \
10 --host 0.0.0.0 --port 8080
1@misc{gemmateam2026gemma4,
2 title={Gemma 4 Technical Report},
3 author={Gemma Team},
4 year={2026},
5 eprint={2607.02770},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2607.02770},
9}