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