Faster-RCNN遇到的问题

在编译Faster-RCNN时,参照caffe的makefile流程顺利进行,但在运行指定脚本时遇到问题。主要问题是python layer的配置以及protobuf版本冲突。通过取消Makefile.config中python layer的注释并重新编译,以及在train.py中引入google.protobuf.text_format解决了问题,最终成功运行Faster-RCNN。
摘要由CSDN通过智能技术生成

编译过程挺顺利的,完全参照之前编译的caffe的makefile进行就好。运行./experiments/scripts/faster_rcnn_alt_opt.sh 0 VGG16 pascal_voc,遇到的问题做个小汇总:

1. python layer

F1107 02:52:02.470175  4181 layer_factory.hpp:81] Check failed: registry.count(type) == 1 (0 vs. 1) Unknown layer type: Python (known types: AbsVal, Accuracy, ArgMax, BNLL, BatchNorm, BatchReindex, Bias, Concat, ContrastiveLoss, Convolution, Data, Deconvolution, Dropout, DummyData, ELU, Eltwise, Embed, EuclideanLoss, Exp, Filter, Flatten, HDF5Data, HDF5Output, HingeLoss, Im2col, ImageData, InfogainLoss, InnerProduct, LRN, Log, MVN, MemoryData, MultinomialLogisticLoss, PReLU, Pooling, Power, ROIPooling, ReLU, Reduction, Reshape, SPP, Scale, Sigmoid, SigmoidCrossEntropyLoss, Silence, Slice, SmoothL1Loss, Softmax, SoftmaxWithLoss, Split, TanH, Threshold, Tile, WindowData)

把$py-faster-rcnn/caffe-fast-rcnn里面的Makefile.config文件中的下面一行的注释取消:

# Uncomment to support layers written in Python (will link against Python libs)
WITH_PYTHON_LAYER := 1 #把这一行的注释取消

然后再make clean后重新make -j & make pycaffe即可

2.

AttributeError: 'module' object has no attribute 'text_format'

然后使用sudo pip install protobuf==2.5.0,error变成了以下:

cannot import name symbol_database 

然后sudo pip install –upgrade protobuf,error重新变回:

AttributeError: 'module' object has no attribute 'text_format'

所以最终解决办法应该是在./lib/fast_rcnn/train.py中加上import google.protobuf.text_format即可

目前就遇到以上两个问题,解决后已经可以成功跑起来了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值