Replies: 1 comment
-
@TRDWuisan you can result validation results directly in Python and handle according to your custom needs there: from ultralytics import YOLO
model = YOLO('yolov8n.pt')
results = model.val(data='coco128.yaml') For details see https://docs.ultralytics.com/modes/val/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Heya folks, a bit of a basic question here (i hope), but I'm using roboflow's yolov8 tutorial and am wondering how to change the formatting of the metric plots (f1, precision, recall curves, & confusion matrix). or better yet, how can I call the values/variables that are used to plot these curves as in their tutorial the plots are saved as pngs directly. I know there's the results.csv file that includes the values for the training/validation/mAP, but it doesnt seem to include the confusion matrix/precision/recall curves. I just want to change the formatting of the plots like turning on latex. Any ideas? Thanks :D
Beta Was this translation helpful? Give feedback.
All reactions