Transformers How to use TIGER-Lab/VideoScore-Qwen2-VL with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="TIGER-Lab/VideoScore-Qwen2-VL") # Load model directly
from transformers import AutoProcessor, AutoModelForSequenceClassification
processor = AutoProcessor.from_pretrained("TIGER-Lab/VideoScore-Qwen2-VL")
model = AutoModelForSequenceClassification.from_pretrained("TIGER-Lab/VideoScore-Qwen2-VL")