Tensorflow:没有属性' load_labelmap'

时间:2017-07-25 21:20:40

标签: machine-learning tensorflow

我按照他们的Github上描述的步骤来安装Object Detection API然后我运行了这个脚本:

python object_detection/builders/model_builder_test.py

并且测试成功,所以我假设一切都设置正确。接下来,我尝试使用qtconsole运行Jupyter Notebook来检测测试图像中的对象。但是它会返回此错误:

AttributeError                            Traceback (most recent call last)
<ipython-input-3-be6fe1ba8733> in <module>()
----> 1 from utils import label_map_util
      2 
      3 from utils import visualization_utils as vis_util
      4 

~\Desktop\Objectdetection\models-master\object_detection\utils\label_map_util.py in <module>()
     20 import tensorflow as tf
     21 from google.protobuf import text_format
---> 22 from object_detection.protos import string_int_label_map_pb2
     23 
     24 

~\Desktop\Objectdetection\models-master\object_detection\object_detection.py in <module>()
    114 
    115 
--> 116 label_map = label_map_util.load_labelmap(PATH_TO_LABELS)
    117 categories = label_map_util.convert_label_map_to_categories(label_map, max_num_classes=NUM_CLASSES, use_display_name=True)
    118 category_index = label_map_util.create_category_index(categories)

AttributeError: module 'utils.label_map_util' has no attribute 'load_labelmap'

有谁知道这个问题的原因是什么?

感谢。

1 个答案:

答案 0 :(得分:0)

在档案~\Desktop\Objectdetection\models-master\object_detection\utils\label_map_util.py

尝试更改此内容:

from object_detection.protos import string_int_label_map_pb2

到此:

from protos import string_int_label_map_pb2

<强>解释

模块load_labelmap中的函数label_map_util无法访问,因为string_int_label_map_pb2的导入失败。

如果查看print(dir(label_map_util))的输出,就可以看到这一点。

使用object_detection.protos时:

['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'logging', 'text_format', 'tf']

将相对路径更改为protos后,该功能应该可以访问:

['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '_validate_label_map', 'convert_label_map_to_categories', 'create_category_index', 'get_label_map_dict', 'load_labelmap', 'logging', 'string_int_label_map_pb2', 'text_format', 'tf']