Instructions to use merve/smol-vision with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use merve/smol-vision with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="merve/smol-vision")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("merve/smol-vision", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use merve/smol-vision with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "merve/smol-vision" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "merve/smol-vision", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/merve/smol-vision
- SGLang
How to use merve/smol-vision with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "merve/smol-vision" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "merve/smol-vision", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "merve/smol-vision" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "merve/smol-vision", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use merve/smol-vision with Docker Model Runner:
docker model run hf.co/merve/smol-vision
Update README.md
#4
by Rafacelis - opened
README.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
- notebook
|
| 4 |
-
pipeline_tag: image-text-to-text
|
| 5 |
library_name: transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |

|
| 8 |
# Smol Vision 🐣
|
|
@@ -31,4 +39,4 @@ Latest examples 👇🏻
|
|
| 31 |
| VLM Fine-tuning | [Fine-tune Gemma-3n for all modalities (audio-text-image)](https://huggingface.co/merve/smol-vision/blob/main/Gemma3n_Fine_tuning_on_All_Modalities.ipynb) | Fine-tune Gemma-3n model to handle any modality: audio, text, and image. |
|
| 32 |
| Multimodal RAG | [Any-to-Any (Video) RAG with OmniEmbed and Qwen](https://huggingface.co/merve/smol-vision/blob/main/Any_to_Any_RAG.ipynb) | Do retrieval and generation across modalities (including video) using OmniEmbed and Qwen. |
|
| 33 |
| Speed-up/Memory Optimization | Vision language model serving using TGI (SOON) | Explore speed-ups and memory improvements for vision-language model serving with text-generation inference |
|
| 34 |
-
| Quantization/Optimum/ORT | All levels of quantization and graph optimizations for Image Segmentation using Optimum (SOON) | End-to-end model optimization using Optimum |
|
|
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
- notebook
|
|
|
|
| 4 |
library_name: transformers
|
| 5 |
+
base_model:
|
| 6 |
+
- black-forest-labs/FLUX.1-Kontext-dev
|
| 7 |
+
- google/gemma-3n-E4B-it
|
| 8 |
+
- mistralai/Voxtral-Mini-3B-2507
|
| 9 |
+
- Qwen/Qwen3-Coder-480B-A35B-Instruct
|
| 10 |
+
- black-forest-labs/FLUX.1-Kontext-dev-onnx
|
| 11 |
+
- moonshotai/Kimi-K2-Instruct
|
| 12 |
+
- tencent/Hunyuan-A13B-Instruct
|
| 13 |
+
new_version: merve/smol-vision
|
| 14 |
---
|
| 15 |

|
| 16 |
# Smol Vision 🐣
|
|
|
|
| 39 |
| VLM Fine-tuning | [Fine-tune Gemma-3n for all modalities (audio-text-image)](https://huggingface.co/merve/smol-vision/blob/main/Gemma3n_Fine_tuning_on_All_Modalities.ipynb) | Fine-tune Gemma-3n model to handle any modality: audio, text, and image. |
|
| 40 |
| Multimodal RAG | [Any-to-Any (Video) RAG with OmniEmbed and Qwen](https://huggingface.co/merve/smol-vision/blob/main/Any_to_Any_RAG.ipynb) | Do retrieval and generation across modalities (including video) using OmniEmbed and Qwen. |
|
| 41 |
| Speed-up/Memory Optimization | Vision language model serving using TGI (SOON) | Explore speed-ups and memory improvements for vision-language model serving with text-generation inference |
|
| 42 |
+
| Quantization/Optimum/ORT | All levels of quantization and graph optimizations for Image Segmentation using Optimum (SOON) | End-to-end model optimization using Optimum |
|