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