【发布时间】:2020-07-20 18:59:52
【问题描述】:
我在尝试编译 Protobuf 以使用 TensorFlow 对象检测 API 时遇到问题。
我正在关注本教程:https://github.com/Khaivdo/How-to-train-an-Object-Detector-using-Tensorflow-API-on-Ubuntu-16.04-GPU
在命令行中我尝试启动这个命令(教程链接中的 1.4.2 编译 Protobuf):
# From ObjectDetection/models/research/
protoc object_detection/protos/*.proto --python_out=.
我得到了这个错误:
object_detection/protos/input_reader.proto: warning: Import object_detection/protos/image_resizer.proto but not used.
我该如何解决这个问题?
【问题讨论】:
标签: python tensorflow computer-vision object-detection-api protobuf-python