运行SSD算法中的create_data.sh,出现AttributeError: 'module' object has no attribute 'LabelMap'的问题

在create_data.sh文件调用$caffe_root下的scripts目录中的create_annoset.py时产生的错误:


Traceback (most recent call last):
File "/opt/xuben-project/caffe/data/VOC0712/../../scripts/create_annoset.py", line 105, in
label_map = caffe_pb2.LabelMap()
AttributeError: 'module' object has no attribute 'LabelMap'
Traceback (most recent call last):
File "/opt/xuben-project/caffe/data/VOC0712/../../scripts/create_annoset.py", line 105, in
label_map = caffe_pb2.LabelMap()
AttributeError: 'module' object has no attribute 'LabelMap'


原因应该是没有加入PYTHONPATH路径.


git checkout ssd

执行这个代码看看有没有出错

gedit ~/.bashrc

然后在打开的文件中查找PYTHONPATH

没有的话,就添加“export PYTHONPATH=/×/python”

其中“X”填你下的SSD算法中的caffe的路径(SSD中的caffe是有修改过的!!!!)

最后重启电脑。

重启之后在运行create_data.sh,就能行了



搞定睡觉

你可能感兴趣的:(Single,Shot,multibox,Detector)