Views
No views yet
best.pt
1from ultralytics import YOLO 2 3# Load the model 4model = YOLO('path/to/best.pt') 5 6# Run inference 7results = model('path/to/chess_image.jpg') 8 9# Display results 10results[0].show()