Views
No views yet
1from ultralytics import YOLO 2 3# Load model 4model = YOLO('best.pt') 5 6# Run inference 7results = model('path/to/image.jpg')