使用tensorflow显示pb模型的所有网络结点方式
时间:2021-05-05 15:37:24|栏目:Python代码|点击: 次
代码如下:
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就能看到模型的各个节点了
结果如下:

栏 目:Python代码
下一篇:PyCharm Ctrl+Shift+F 失灵的简单有效解决操作
本文标题:使用tensorflow显示pb模型的所有网络结点方式
本文地址:http://www.codeinn.net/misctech/115297.html






