温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2020-09-19 21:20:49 来源:脚本之家 阅读:102 作者:南有木兮木不知 栏目:开发技术

代码如下:

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就能看到模型的各个节点了

结果如下:

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

以上这篇使用tensorflow显示pb模型的所有网络结点方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持亿速云。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI