Transformers How to use zjunlp/OceanCLIP-0.15B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("zero-shot-classification", model="zjunlp/OceanCLIP-0.15B") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("zjunlp/OceanCLIP-0.15B", dtype="auto")