I am trying to run the object_detection.ipynb
type program but it is a normal python program(.py). It is working very well but when running inside the ..m
I have seen the same problem. that's because string_int_label_map_pb2.py
file doesn't exist.
1.you need to install protobuf
.
https://github.com/google/protobuf/releases
cd
your path to object_detection
protoc object_detection/protos/string_int_label_map.proto --python_out=.
you will find string_int_label_map_pb2.py
file in 'object_detection\protos'
PYTHONPATH
.