我有一个model.ckpt.meta文件,我只想查看架构/图形结构。我无法从model.ckpt.meta文件中找到如何执行此操作。 感谢米兰,下面是代码: tf.train.import_meta_graph("./model.ckpt.meta")
for n in tf.get_default_graph().as_graph_def().node:
print(n)
with tf.Session() as sess:
writer = tf.summary.FileWriter("./output/", sess.graph)
wri