“No training configuration found in save file:the model was *not* compiled. Compile it manually”解决方案

YOLO目标检测算法能够很好地实时定位视频目标物体,github项目YOLOv3目标检测算法能够很快地调试运行,但在训练完模型后预测图片和视频时仍然有一个小问题如下图所示,

“No training configuration found in save file:the model was *not* compiled. Compile it manually”解决方案_第1张图片

这个警告可以不用管它,预测的图片也会出现在output文件夹下面。

如果要消除这个警告,可以predict.py中的一行代码

infer_model = load_model(config['train']['saved_weights_name'])

改为

infer_model = load_model(config['train']['saved_weights_name'], compile=False)

警告就会消失。

 

你可能感兴趣的:(深度学习,目标检测,目标检测,YOLOv3,深度学习)