Spaces:
Running
Running
File size: 212 Bytes
c24ce79 |
1 2 3 4 5 |
from ultralytics import YOLOvv8
model = YOLOvv8.from_pretrained("tech4humans/yolov8s-signature-detector")
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True) |