Tj
/

How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Tj/SmolVLM_Proxy"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Tj/SmolVLM_Proxy",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/Tj/SmolVLM_Proxy
Quick Links

SmolVLM Final Merged

This is a fine-tuned version of SmolVLM-Instruct, optimized for conversational AI and vision-language tasks.

Model Details

  • Base Model: HuggingFaceTB/SmolVLM-Instruct
  • Training: Fine-tuned using LLaMA-Factory
  • Use Cases: Chat, vision understanding, multimodal reasoning
  • License: Apache 2.0

Usage

from transformers import AutoProcessor, AutoModelForVision2Seq
import torch

model = AutoModelForVision2Seq.from_pretrained("Tj/smolvlm-final-merged")
processor = AutoProcessor.from_pretrained("Tj/smolvlm-final-merged")

# Your inference code here
Downloads last month
5
Safetensors
Model size
2B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Tj/SmolVLM_Proxy