Darkflow: How to resume through a checkpoint?

Created on 7 Apr 2018  ·  3Comments  ·  Source: thtrieu/darkflow

While training, I mentioned a lower epoch number, so I want to resume from the last checkpoint.

Most helpful comment

I resumed using this:

flow --train --model cfg/tiny-yolo-voc-2c.cfg --load -1 --annotation train/Annotations/ --dataset train/Images/

All 3 comments

Same command but --load -1, you can also use --load STEP_NUMBER

e.g:

python3 ./flow --model cfg/yolo.cfg --load -1 --train --annotation labels --dataset /images

What if the checkpoint files are in a different directory well away from the darkflow main folder?

../../...

I resumed using this:

flow --train --model cfg/tiny-yolo-voc-2c.cfg --load -1 --annotation train/Annotations/ --dataset train/Images/

Was this page helpful?
0 / 5 - 0 ratings