Reputation: 89
I have trained a YOLO model with my own dataset. After training, how can I get my .weights file?
Since I need to share my model with others, I need the .weights file. Or is there another way to share the model?
Upvotes: 0
Views: 267
Reputation: 4151
If you don't make any modification. The weights file is stored inside the backup folder darknet\backup\
Upvotes: 1
Reputation: 3744
The code you used to train shall give you the weights you need. Search for the .weight files as the code help tells you.
Upvotes: 0