Instructions to use Xenova/tiny-random-LlavaForConditionalGeneration_phi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use Xenova/tiny-random-LlavaForConditionalGeneration_phi with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('image-text-to-text', 'Xenova/tiny-random-LlavaForConditionalGeneration_phi'); - Transformers
How to use Xenova/tiny-random-LlavaForConditionalGeneration_phi with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Xenova/tiny-random-LlavaForConditionalGeneration_phi")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("Xenova/tiny-random-LlavaForConditionalGeneration_phi") model = AutoModelForMultimodalLM.from_pretrained("Xenova/tiny-random-LlavaForConditionalGeneration_phi", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Xenova/tiny-random-LlavaForConditionalGeneration_phi with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Xenova/tiny-random-LlavaForConditionalGeneration_phi" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Xenova/tiny-random-LlavaForConditionalGeneration_phi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Xenova/tiny-random-LlavaForConditionalGeneration_phi
- SGLang
How to use Xenova/tiny-random-LlavaForConditionalGeneration_phi 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 "Xenova/tiny-random-LlavaForConditionalGeneration_phi" \ --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": "Xenova/tiny-random-LlavaForConditionalGeneration_phi", "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 "Xenova/tiny-random-LlavaForConditionalGeneration_phi" \ --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": "Xenova/tiny-random-LlavaForConditionalGeneration_phi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Xenova/tiny-random-LlavaForConditionalGeneration_phi with Docker Model Runner:
docker model run hf.co/Xenova/tiny-random-LlavaForConditionalGeneration_phi
Upload 3 files
Browse files- onnx/decoder_model_merged.onnx +3 -0
- onnx/embed_tokens.onnx +3 -0
- onnx/vision_encoder.onnx +3 -0
onnx/decoder_model_merged.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29614edd67e44127904b685738c952e00538b9be4130ede69c54a0eb19b6983f
|
| 3 |
+
size 2301777
|
onnx/embed_tokens.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:839a343c187fb926d275d23dc8ddaff3a0c4f3b5aeffe587670985c4dbf17fa3
|
| 3 |
+
size 2048359
|
onnx/vision_encoder.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:543d0044de2f174103bdb2c78e50408e46c167beee8359175d5e5d6cf5d0f2ef
|
| 3 |
+
size 102838
|