How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="VyoJ/SmolVLM-500M-Instruct-be-GGUF",
	filename="",
)
llm.create_chat_completion(
	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"
					}
				}
			]
		}
	]
)

Model Information

SmolVLM-500M is a tiny multimodal model by HuggingFace. It was converted to the GGUF format by ggml-org.

I converted it to a big-endian format and uploaded for use on IBM z/OS machines.

Model developer: HuggingFace

Model Architecture: Based on Idefics3

License: Apache 2.0

For more details on the model, please go to Meta's original model card

Downloads last month
31
GGUF
Model size
0.4B params
Architecture
llama
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for VyoJ/SmolVLM-500M-Instruct-be-GGUF