Transformers How to use kwanY/styleid with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-feature-extraction", model="kwanY/styleid") # Load model directly
from transformers import AutoProcessor, AutoModelForZeroShotImageClassification
processor = AutoProcessor.from_pretrained("kwanY/styleid")
model = AutoModelForZeroShotImageClassification.from_pretrained("kwanY/styleid")