Transformers How to use yermandy/GenD_CLIP_L_14 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="yermandy/GenD_CLIP_L_14")
pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png") # Load model directly
from transformers import GenD
model = GenD.from_pretrained("yermandy/GenD_CLIP_L_14", dtype="auto")