-
What is the best approach to inference on all images in the test data split using a custom-trained YOLOv8 model? Let me clarify that I have already trained my custom YOLOv8 model and I know how to use the "mode=predict" functionality to perform inference on individual images. However, I am looking for a way to perform inference on all of the images in my test data split at once, rather than one at a time. Ideally, I would like to automate this process as much as possible. Furthermore, my test images are labeled, and I would like to be able to evaluate the performance of my model on this test data using metrics such as precision, recall, and F1-score. Are there any tools or libraries that can help me perform this evaluation? Is there a recommended workflow for evaluating the performance of a YOLOv8 model on labeled test dataset? Any guidance or advice on how to approach these challenges would be greatly appreciated. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I've found that there is a parameter called split: When using validation, you just need to add it, and the problem is solved. |
Beta Was this translation helpful? Give feedback.
I've found that there is a parameter called split:
When using validation, you just need to add it, and the problem is solved.