tensorflow inception 中的预测标签图像加载计算图失败

Predict label image in tensorflow inception failed to load compute graph

我重新训练了初始模型,使其适合我自己的需要,并让这一步起作用:

Final test accuracy = 70.6% Converted 2 variables to const ops.

ls /tmp/ | grep output

output_graph.pb output_labels.txt

我知道想测试我的模型 following the instructions 我试过了 :

bazel build tensorflow/examples/label_image:label_image && bazel-bin/tensorflow/examples/label_image/label_image --graph=/tmp/ouput_graph.pb --labels=/tmp/output_labels.txt --output_layer=final_result --image=~/Images/cat/pic.jpg

构建阶段成功,但命令行的第二部分给我这个错误:

E tensorflow/examples/label_image/main.cc:278] Not found: Failed to load compute graph at '/tmp/ouput_graph.pb'

我不知道如何解决这个问题,只要这个文件存在(它的大小大约是 85 Mb)

你的命令行有错字吗?当我希望看到 output_graph.pb 时,我看到了 ouput_graph.pb(output_graph.pb 中有一个 't')。