Tensorflow Inception FeedInputs:无法找到提要输出输入

Tensorflow Inception FeedInputs: unable to find feed output input

我试过tensorflow网站上的inception教程: https://www.tensorflow.org/versions/r0.12/how_tos/image_retraining/ bazel 构建已成功完成,但是当我尝试使用此命令预测图像 class 时:

bazel build tensorflow/examples/label_image:label_image && \
bazel-bin/tensorflow/examples/label_image/label_image \
--graph=/tmp/output_graph.pb --labels=/tmp/output_labels.txt \
--output_layer=final_result \
--image=$HOME/flower_photos/daisy/21652746_cc379e0eea_m.jpg

我有这个错误: tensorflow/examples/label_image/main.cc:305] 运行 模型失败:未找到:FeedInputs:无法找到提要输出输入

我该如何解决这个问题

您使用的是 Tensorflow 1.0+ 吗?我遇到了同样的问题,但切换到早期版本(我使用的是 0.12.0)解决了这个问题。一定是 1.0.0 更新中的东西破坏了教程

thread 帮助我解决了这个问题。

看来需要给--input_layer提供Tensorflow 1.0+。

对于您的情况,这应该可以解决问题:

bazel build tensorflow/examples/label_image:label_image && \
bazel-bin/tensorflow/examples/label_image/label_image \
--graph=/tmp/output_graph.pb --labels=/tmp/output_labels.txt \
--output_layer=final_result \
--image=$HOME/flower_photos/daisy/21652746_cc379e0eea_m.jpg \
--input_layer=Mul