我只有一个 graph.pbtxt 文件。我想在 tensorboard 中查看图形。但是我不知道该怎么做。我必须编写任何python脚本还是可以从终端本身执行?请帮助我了解其中的步骤。
答案 0 :(得分:4)
打开tensorboard并使用左侧的“上传”按钮上传pbtxt文件将直接在tensorboard中打开图形。
答案 1 :(得分:0)
您可以使用.pb
从.pbtxt
保存tf.train.write_graph
文件
from google.protobuf import text_format
with open('graph.pbtxt') as f:
text_graph = f.read()
graph_def = text_format.Parse(text_graph, tf.GraphDef())
tf.train.write_graph(graph_def, path, 'graph.pb', as_text=False)
然后您可以将其加载到tf.Session
中。看看这个要旨
https://gist.github.com/jubjamie/2eec49ca1e4f58c5310d72918d991ef6