I am trying to run the high-level object detection API that I found in Gentub Tensorflow. One step is to compile the module as follows:
protoc object_detection\protos\*.proto --python_out=.
When I do this, I get the following message:
object_detection\protos\*.proto: No such file or directory
Any idea? I am running windows 7
EDIT: if I run:
protoc --python_out=. *.proto
from the right folder, I get:
*.proto: No such file or directory
source
share