Views
No views yet
| Original (BF16) | NVFP4 (this) | |
|---|---|---|
| Size on disk | ~16 GB | ~10.2 GB |
| Compression | — | ~1.6x (text layers 3x, vision/audio stay BF16) |
| Effective parameters | 2B | 2B |
| Architecture | Dense + PLE (Per-Layer Embeddings) | same |
| Context window | 128K tokens | 128K tokens |
| Modalities | Text, Image, Audio | Text, Image, Audio |
| Metric | NVFP4 |
|---|---|
| Tokens/sec | ~65 tok/s |
| Model load | ~10.2 GB VRAM |
transformers >= 5.4 (for Gemma 4 architecture support). No patches needed — vanilla vLLM handles E4B NVFP4 directly.1vllm serve bg-digitalservices/Gemma-4-E4B-it-NVFP4 \
2 --quantization modelopt \
3 --dtype auto \
4 --kv-cache-dtype fp8 \
5 --gpu-memory-utilization 0.30 \
6 --max-model-len 131072 \
7 --trust-remote-code1VLLM_NVFP4_GEMM_BACKEND=marlin vllm serve bg-digitalservices/Gemma-4-E4B-it-NVFP4 \
2 --quantization modelopt \
3 --dtype auto \
4 --kv-cache-dtype fp8 \
5 --gpu-memory-utilization 0.10 \
6 --max-model-len 131072 \
7 --trust-remote-code1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{"model":"bg-digitalservices/Gemma-4-E4B-it-NVFP4","messages":[{"role":"user","content":"Hello!"}],"max_tokens":200}'quantize.pytransformers >= 5.4