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