google/docci
Updated β’ 459 β’ 77
How to use gokaygokay/sd3-long-captioner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="gokaygokay/sd3-long-captioner") # Load model directly
from transformers import AutoProcessor, AutoModelForImageTextToText
processor = AutoProcessor.from_pretrained("gokaygokay/sd3-long-captioner")
model = AutoModelForImageTextToText.from_pretrained("gokaygokay/sd3-long-captioner")How to use gokaygokay/sd3-long-captioner with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "gokaygokay/sd3-long-captioner"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "gokaygokay/sd3-long-captioner",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/gokaygokay/sd3-long-captioner
How to use gokaygokay/sd3-long-captioner with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "gokaygokay/sd3-long-captioner" \
--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": "gokaygokay/sd3-long-captioner",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "gokaygokay/sd3-long-captioner" \
--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": "gokaygokay/sd3-long-captioner",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use gokaygokay/sd3-long-captioner with Docker Model Runner:
docker model run hf.co/gokaygokay/sd3-long-captioner
Fine-tuned version of PaliGemma 224x224 on google/docci and google/imageinwords datasets.
pip install git+https://github.com/huggingface/transformers
from transformers import AutoProcessor, PaliGemmaForConditionalGeneration
from PIL import Image
import requests
import torch
model_id = "gokaygokay/sd3-long-captioner"
url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/car.jpg?download=true"
image = Image.open(requests.get(url, stream=True).raw)
model = PaliGemmaForConditionalGeneration.from_pretrained(model_id).to('cuda').eval()
processor = AutoProcessor.from_pretrained(model_id)
## prefix
prompt = "caption en"
model_inputs = processor(text=prompt, images=image, return_tensors="pt").to('cuda')
input_len = model_inputs["input_ids"].shape[-1]
with torch.inference_mode():
generation = model.generate(**model_inputs, max_new_tokens=256, do_sample=False)
generation = generation[0][input_len:]
decoded = processor.decode(generation, skip_special_tokens=True)
print(decoded)