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