make runtest报错:'[libprotobuf ERROR google/protobuf/text_format.cc:245] Error parsing text-format caffe.SolverParameter: 1:113: Message type “caffe.SolverParameter” has no field named “layer_wise_reduce”.’
原因:未安装protobuf或者protobuf版本太低。我是因为版本太低。
解决:先卸载原protobuf,进入原安装目录然后sudo make clean后删除安装文件即可,之后官网下载最新protobuf,地址:https://github.com/google/protobuf/
解压,然后进入cd protobuf-master
./autogen.sh
./configure
make
make install
若./autogen.sh报错:./autogen.sh: 48: autoreconf: not found
参看博主博文解决:http://blog.csdn.net/xunan003/article/details/75175078
如果安装更新之后还是报错,那么还有一种原因,就是假如你正在添加原caffe没有的东西,而重新编译caffe。改换了别处的caffe.proto文件,那么就去检查你的caffe.proto文件有无错误,最好与原来的做一个对比查找错误。
版权声明:本文为xunan003原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。