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