Views
No views yet
llama.cpp and compatible ecosystems.| File | Method | Bit | Description |
|---|---|---|---|
| fp16.gguf | FP16 | 16-bit | Original Weights. No quantization applied. Maximum fidelity. |
| Q8_0.gguf | Q8_0 | 8-bit | Near-lossless. Practically identical to the original model with lower memory footprint. |
| Q5_K_M.gguf | Q5_K_M | 5-bit | High Precision. Minimizes quantization error for critical tasks. |
| Q4_K_M.gguf | Q4_K_M | 4-bit | Recommended. Best balance between speed and performance. |
| Q4_K_S.gguf | Q4_K_S | 4-bit | Fast/Small. Optimized for maximum throughput and low RAM usage. |
llama-quantize (llama.cpp)./llama-cli -hf daniloreddy/gemma-3-4b-it_GGUF:Q4_K_M -p "User: Hello! Assistant:" -n 512 --temp 0.7./llama-cli -m path/to/gemma-3-4b-it_Q4_K_M.gguf -p "User: Hello! Assistant:" -n 512 --temp 0.7./llama-server -hf daniloreddy/gemma-3-4b-it_GGUF:Q4_K_M --port 8080 -c 4096./llama-server -m /path/to/gemma-3-4b-it_Q4_K_M.gguf --port 8080 -c 4096