Views
No views yet
| Filename | Quant | Size | Description |
|---|---|---|---|
| SmolVLM2-2.2B-Instruct-Q4_K_M.gguf | Q4_K_M | 1.0 GB | Best balance of quality and speed (recommended) |
| SmolVLM2-2.2B-Instruct-Q8_0.gguf | Q8_0 | 1.8 GB | Higher quality |
| SmolVLM2-2.2B-Instruct.gguf | F16 | 3.4 GB | Full precision |
1# Pull and run (Q4_K_M by default)
2ollama run richardyoung/smolvlm2-2.2b-instruct
3
4# Or specific quantization
5ollama run richardyoung/smolvlm2-2.2b-instruct:q8_0
6ollama run richardyoung/smolvlm2-2.2b-instruct:f161# Download a quantization
2wget https://huggingface.co/richardyoung/SmolVLM2-2.2B-Instruct-GGUF/resolve/main/SmolVLM2-2.2B-Instruct-Q4_K_M.gguf
3
4# Run with llama.cpp
5./llama-cli -m SmolVLM2-2.2B-Instruct-Q4_K_M.gguf -p "Describe this image:" --image your_image.jpg<|im_start|>system
{system_message}<|im_end|>
<|im_start|>user
{user_message}<|im_end|>
<|im_start|>assistant
{assistant_response}<|im_end|>