添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

google.protobuf.message.decodeerror error parsing message with type 'tensorflow.graphdef'

报错原因

使用以下代码,加载图模型的时候会报错

#保存图模型
    tf.train.write_graph(sess.graph_def, graph_dir, 'graph.pbtxt',as_text=True)
    #加载图模型
    with tf.gfile.FastGFile("modle_graph/graph.pbtxt","rb") as f:
        graph_def = tf.GraphDef()
        graph_def.ParseFromString(f.read())
tf.train.write_graph(sess.graph_def, graph_dir, 'graph.pbtxt',as_text=False)
  •