使用tensorflow显示pb模型的所有网络结点

代码如下:

import tensorflow as tf
from tensorflow.python.platform import gfile

model = 'pb_path'
graph = tf.get_default_graph()
graph_def = graph.as_graph_def()
graph_def.ParseFromString(gfile.FastGFile(model, 'rb').read())
tf.import_graph_def(graph_def, name='graph')
summaryWriter = tf.summary.FileWriter('log/', graph)

使用步骤:

1.修改display_model_nodes.py里的model定义为自己的pb模型
2.python display_model_nodes.py会在log里生成out日志
3.tensorboard --logdir=log
且会在下方出现网页地址 TensorBoard 1.10.0 at http://oeasy:6006 (Press CTRL+C to quit)
4.在浏览器中打输入:http://oeasy:6006就能看到模型的各个节点了

结果如下:
在这里插入图片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章