1、ImportError: No module named cython_bbox
解决办法是:在faster rcnn里面的cython_bbox.so放到需要调用的地方(faster rcnn里面的lib文件也要拷过去,然后make吗?不确定)
2、AttributeError: 'module' object has no attribute 'text_format'
解决办法是:在train.py增加一行import google.protobuf.text_format 即可解决问题
3、TypeError: 'float' object cannot be interpreted as an index
解决办法是:把numpy的版本由1.12.0降为1.11.0问题得以解决,先把原来的numpy卸载。
sudo pip install -U numpy==1.11.0/pip install --user numpy==1.11.1