Views
No views yet
| Property | Value |
|---|---|
| Base model | google/gemma-4-26B-A4B-it |
| Quantization | NVFP4 (Blackwell-native FP4) |
| Model size | ~13.45 GB |
| Bits per weight | 4.57 BPW |
| Architecture | Gemma4 (30 layers, 128 MoE experts, 4B active) |
| Output type | gguf (version 3) |
| File | Size | Description |
|---|---|---|
gemma-4-26b-NVFP4.gguf | 13.45 GB | Quantized text model (NVFP4) |
mmproj-gemma-4-26b-f16.gguf | 1.11 GB | Vision encoder (multimodal projector) |
1# Text-only inference
2./llama-cli -m gemma-4-26b-NVFP4.gguf -p "Hello, how are you?" -n 256
3
4# Multimodal (image) inference
5./llama-cli -m gemma-4-26b-NVFP4.gguf --mmproj mmproj-gemma-4-26b-f16.gguf \
6 --image path/to/image.jpg -p "Describe this image" -n 2561./llama-server -m gemma-4-26b-NVFP4.gguf --mmproj mmproj-gemma-4-26b-f16.gguf \
2 --host 0.0.0.0 --port 8080enable_thinking=true in your request.