yolo转caffe解决Can‘t parse message of type “caffe.NetParameter”,missing required fields clip_param参数问题

  • Post author:
  • Post category:其他


在yolo转caffe并进行测试时遇到的问题

之前参考一篇博客找到的解决办法,现在找不到了,记一下以防忘记

caffe源码:https://github.com/BVLC/caffe

yolov3转caffe:https://github.com/ChenYingpeng/darknet2caffe

进行测试: https://github.com/ChenYingpeng/caffe-yolov3

遇到问题:[libprotobuf ERROR google/protobuf/message_lite.cc:123] Can’t parse message of type “caffe.NetParameter” because it is missing required fields: layer[92].clip_param.min, layer[92].clip_param.max, layer[104].clip_param.min, layer[104].clip_param.max

在这里插入图片描述

解决方案:

将caffe源码中的src/caffe/proto/caffe.proto 中的clip参数从required改为optional,如下图

然后重新编译caffe和caffe-yolov3

在这里插入图片描述



版权声明:本文为qq_30234963原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。