I saw this command is for yolo v2:
darknet.exe partial cfg/yolov2-tiny-voc.cfg yolov2-tiny-voc.weights yolov2-tiny-voc.conv.13 13
But I want to train my own dataset on yolo v3. What is the command to obtain a partial weight for it?
Here's the file I downloaded: https://pjreddie.com/media/files/yolov3-tiny.weights
Also another question:
In the yolo tiny cfg file:
[net]
# Testing
batch=1
subdivisions=1
# Training
# batch=64
# subdivisions=2
width=416
height=416
If I want to train it, I need to uncomment batch=64 and subdivision=2 right?
Thanks!
How to get pre-trained weights files for any netowkrs:
https://github.com/AlexeyAB/darknet/blob/e29fcb703f8d936e17507bf78043a8b8bc6279b0/build/darknet/x64/partial.cmd#L9-L39
Most helpful comment
How to get pre-trained weights files for any netowkrs:
https://github.com/AlexeyAB/darknet/blob/e29fcb703f8d936e17507bf78043a8b8bc6279b0/build/darknet/x64/partial.cmd#L9-L39