I compiled the files with the following command.
protoc object_detection/protos/*.proto --python_out=.
and as a result compiled into .py files.
However, I received the following error code.
~/Documents/imgmlreport/inception/classification_inception/models/research/object_detection/utils/label_map_util.py in ()
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
ImportError: cannot import name 'string_int_label_map_pb2'
so i checked utils and i already had a string_int_label_map_pb2.py
why can't import string_int_label_map_pb2.py ?