Transformers How to use danelcsb/sam2.1_hiera_tiny with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-segmentation", model="danelcsb/sam2.1_hiera_tiny") # Load model directly
from transformers import AutoImageProcessor, AutoModel
processor = AutoImageProcessor.from_pretrained("danelcsb/sam2.1_hiera_tiny")
model = AutoModel.from_pretrained("danelcsb/sam2.1_hiera_tiny")