Files
yolov8-position/val.py
2023-08-10 12:25:23 +08:00

6 lines
139 B
Python

from ultralytics import YOLO
model = YOLO("best_ffc2000.pt", 'detect')
model.val() # It'll automatically evaluate the data you trained.