How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("zero-shot-image-classification", model="RISys-Lab/ReasonSigLIP-So14-384-S2")
pipe(
    "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png",
    candidate_labels=["animals", "humans", "landscape"],
)
# Load model directly
from transformers import AutoProcessor, AutoModelForZeroShotImageClassification

processor = AutoProcessor.from_pretrained("RISys-Lab/ReasonSigLIP-So14-384-S2")
model = AutoModelForZeroShotImageClassification.from_pretrained("RISys-Lab/ReasonSigLIP-So14-384-S2")
Quick Links

Model Details

Method

Method overview

Resources

Usage

from transformers import AutoModel, AutoProcessor

model_id = "RISys-Lab/ReasonSigLIP-So14-384-S2"
model = AutoModel.from_pretrained(model_id)
processor = AutoProcessor.from_pretrained(model_id)

For the full checkpoint list, see the ReasonCLIP model card.

Downloads last month
75
Safetensors
Model size
0.9B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including RISys-Lab/ReasonSigLIP-So14-384-S2

Paper for RISys-Lab/ReasonSigLIP-So14-384-S2