machine learning - Predict label image in tensorflow inception failed to load compute graph -
i've retrained inception model fits own needs , got step working :
final test accuracy = 70.6% converted 2 variables const ops.
ls /tmp/ | grep output
output_graph.pb output_labels.txt
i know want test model , following instructions tried :
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
the build phase succeed second part of command line gives me error :
e tensorflow/examples/label_image/main.cc:278] not found: failed load compute graph @ '/tmp/ouput_graph.pb'
i don't know how solve this, long file exists (its size 85 mb)
is there typo in command line? see ouput_graph.pb
when i'd expect see output_graph.pb
(with 't' in output_graph.pb).
Comments
Post a Comment