【发布时间】:2017-08-18 18:00:39
【问题描述】:
我在 tensorflow 网站上尝试了 inception 教程: https://www.tensorflow.org/versions/r0.12/how_tos/image_retraining/ bazel 构建已成功完成,但是当我尝试使用此命令预测图像类时:
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:无法找到 feed 输出输入
我该如何解决这个问题
【问题讨论】:
标签: tensorflow deep-learning image-recognition