我正在尝试安装tensorflow对象检测API:https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md
有几件事导致我遇到问题: -首先,在安装Coco API的过程中,我的tensorflow目录中没有目录model / research,我必须创建它们。
我经常有一个类似的错误:
[libprotobuf WARNING google/protobuf/compiler/parser.cc:547] No syntax specified for the proto file: object_detection/protos/anchor_generator.proto. Please use 'syntax = "proto2";' or 'syntax = "proto3";' to specify a syntax version. (Defaulted to proto2 syntax.)
[libprotobuf WARNING google/protobuf/compiler/parser.cc:547] No syntax specified for the proto file: object_detection/protos/argmax_matcher.proto. Please use 'syntax = "proto2";' or 'syntax = "proto3";' to specify a syntax version. (Defaulted to proto2 syntax.)
[libprotobuf WARNING google/protobuf/compiler/parser.cc:547] No syntax specified for the proto file: object_detection/protos/bipartite_matcher.proto. Please use 'syntax = "proto2";' or 'syntax = "proto3";' to specify a syntax version. (Defaulted to proto2 syntax.)
最后,也许编译工作正常,所以当我尝试运行安装文件的最后一个命令时:
python object_detection / builders / model_builder_test.py
没有输出,那么如何知道安装是否成功?
谢谢。