How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "arshjeevs/FinalTry"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "arshjeevs/FinalTry",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
Use Docker
docker model run hf.co/arshjeevs/FinalTry:F16
Quick Links

SmolVLM Cytology GGUF

Fine-tuned SmolVLM multimodal model for cytology image analysis.

Files

  • SmolVLM-Cytology-Q4_K_M.gguf
  • mmproj-SmolVLM-Cytology-f16.gguf

Usage

llama-mtmd-cli \
  -m SmolVLM-Cytology-Q4_K_M.gguf \
  --mmproj mmproj-SmolVLM-Cytology-f16.gguf \
  --image test.png \
  -p "<image> Describe this image"

Notes

  • Quantized using llama.cpp
  • Compatible with llama-mtmd-cli
  • Vision encoder exported separately as mmproj GGUF
Downloads last month
1
GGUF
Model size
0.4B params
Architecture
llama
Hardware compatibility
Log In to add your hardware
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for arshjeevs/FinalTry