SSD编译问题

来源:互联网 发布:java过滤器工作原理 编辑:程序博客网 时间:2024/06/09 17:09

编译SSD的时候,make all -j16
出现了以下错误:

/usr/include/boost/property_tree/detail/json_parser_read.hpp:257:264: error: ‘type name’ declared as function returning an arraymake: *** [.build_release/cuda/src/caffe/layers/detection_output_layer.o] Error 1

解决方案:

easy workaround (sudo not required!):in <caffe_root>/src/caffe/layers/detection_output_layer.cu and .cpp: search for write_json and comment it outin <caffe_root>/include/caffe/layers/detection_output_layer.hpp://#include <boost/property_tree/json_parser.hpp>and thenmake cleanmake -j8as far as I know, write_json is only used to write results in VOC format ...
原创粉丝点击