unable to use Trained Tensorflow model
问题 I am new to Deep Learning and Tensorflow. I retrained a pretrained tensorflow inceptionv3 model as saved_model.pb to recognize different type of images but when I tried to use the fie with below code. with tf.Session() as sess: with tf.gfile.FastGFile("tensorflow/trained/saved_model.pb",'rb') as f: graph_def = tf.GraphDef() tf.Graph.as_graph_def() graph_def.ParseFromString(f.read()) g_in=tf.import_graph_def(graph_def) LOGDIR='/log' train_writer=tf.summary.FileWriter(LOGDIR) train_writer.add