No module named 'object_detection'
kurzacz opened this issue · 2 comments
kurzacz commented
Hello,
I've downloaded your project, but I can't run it. I'm getting error:
Traceback (most recent call last):
File "VehicleMoniter.py", line 40, in <module>
from utils import label_map_util
File "/home/asmox/AppDev/testing/Traffic-Rule-Violation-Detection-System/utils/label_map_util.py", line 22, in <module>
from object_detection.protos import string_int_label_map_pb2
ModuleNotFoundError: No module named 'object_detection'
I suppose I need to install additional packages, or use BUILD file provided, but there is no mention in your README file. Can you please update your installation tutorial? I'm not able to use your library now
Hahkarthick commented
Follow these steps to run this application
- Remove or move the models folder
- Git clone this repo in your project dir (https://github.com/tensorflow/models)
- Copy "models/research/object_detection" object detection folder to root dir of your project
- There you go !!!
kurzacz commented
Thank you, it helped me. I had to additionally compile models as described in:
https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md#protobuf-compilation
Reason: I was getting error like here:
tensorflow/models#1595