将基于tensorflow的yolo权重模型导出成keras模型h5(weights to h5)

首先下载yolo的权重:
命令:wget https://pjreddie.com/media/files/yolov3.weights
在https://github.com/pjreddie/darknet中找到对应的cfg文件
执行python convert.py yolov3.cfg yolov3.weights model_data/yolo.h5
convert.py文件:https://github.com/ghailey/keras-yolo3/blob/master/convert.py

你可能感兴趣的:(yolo,keras,h5)