I trained YOLOv3 via the Darknet framework. Every 1000 iteration it saved the weights but at the end, Darknet evaluates all the weights, and uses the best. They are saved in a separate file "yolov3_best.weights".
I want to find out, which iteration was used for this file. I tried so far:
- use the weights in a recognition test via terminal and checked the output
- opened the best.weights-file via Editor and searched for it
but I couldn't find it.
Does anyone have a solution?
Thanks upfront.