Views
No views yet
Note: Access to the original model requires accepting Google's terms. By using this quantized version, you agree to the original license (Apache 2.0).
| Property | Value |
|---|---|
| Base Model | google/gemma-4-E2B-it |
| Architecture | gemma4 |
| Quantization | NVFP4 (4-bit NVIDIA FP4, ftype=39) |
| Parameters | ~2B |
| Context Length | 128K tokens |
| Vocabulary | 262K tokens |
| Modalities | Text + Vision + Audio (via mmproj) |
| License | Apache 2.0 |
| File | Size | Description |
|---|---|---|
gemma-4-E2B-it-NVFP4.gguf | ~3.2 GB | Main model weights (NVFP4 quantized) |
mmproj-gemma-4-E2B-it-f16.gguf | ~986 MB | Multimodal projector for vision/audio inputs |
1# Text-only inference
2./llama-cli -m gemma-4-E2B-it-NVFP4.gguf -p "Your prompt here" -n 512
3
4# Multimodal (image input)
5./llama-cli -m gemma-4-E2B-it-NVFP4.gguf --mmproj mmproj-gemma-4-E2B-it-f16.gguf \
6 --image path/to/image.jpg -p "Describe this image" -n 256.gguf files from this repositorymodels/Gemma-4-E2B-it-NVFP4/)mmproj-gemma-4-E2B-it-f16.gguf file contains the multimodal projector weights needed for vision and audio inputs.