Barternder-draft / data.py
OGOGOG's picture
Create data.py
32febfc verified
raw
history blame contribute delete
274 Bytes
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-to-text", model="mradermacher/Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF")
messages = [
{"role": "user", "content": "1000 rows of watches and their specs"},
]
pipe(messages)