yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!

yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!

从https://github.com/YunYang1994/tensorflow-yolov3/releases/download/v1.0/yolov3_coco.tar.gz下载解压后想作为初始权重文件进行迁移学习。
直接运行train.py出现错误yolo3_coco.ckpt does not exist!!!
解决办法
先在convert_weight.py所在文件位置
yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!_第1张图片
cmd运行,输入命令python convert_weight.py --train_from_coco运行
yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!_第2张图片
在checkpoint文件夹下会出现yolov3_test_demo.ckpt文件
yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!_第3张图片
修改core/config.py文件中的__C.YOLO.ORIGINAL_WEIGHT 为yolov3_test_demo.ckpt的文件路径
yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!_第4张图片
还有__C.TRAIN.INITIAL_WEIGHT
yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!_第5张图片
保存文件,运行train.py即可。

你可能感兴趣的:(yuyang1994 tensorflow_yolov3 ./checkpoint/yolo3_coco.ckpt does not exist!!!)