tensorflow通过模型文件,使用tensorboard查看其模型图Graph
tensorflow
一个面向所有人的开源机器学习框架
项目地址:https://gitcode.com/gh_mirrors/te/tensorflow
免费下载资源
·
Google提供了一个工具,TensorBoard,它能以图表的方式分析你在训练过程中汇总的各种数据,其中包括Graph结构。
所以我们可以简单的写几行Pyhton,加载Graph,只在logdir里,输出Graph结构数据,并可以查看其图结构。
- 执行下述代码,将数据流图保存为图片,在目录F:/tensorflow/graph下生成文件events.out.tfevents.1508420019.XM-PC
import tensorflow as tf
from tensorflow.python.platform import gfile
graph = tf.get_default_graph()
graphdef = graph.as_graph_def()
_ = tf.train.import_meta_graph("model.ckpt.metaa")
summary_write = tf.summary.FileWriter("./" , graph)
summary_write.close()
- 启用tensorboard
我用的python开发环境是Anaconda
(1)打开Anaconda Prompt,输入activate tensorflow进入tensorflow环境;
(2)开启tensorboard,输入如下命令
tensorboard --logdir=F://tensorflow//graph
其中logdir中的参数就是代码中保存graph的路径,如果写为单斜杠,tensorboard可打开,但graphs中显示“No graph definition files were found”,并不显示graph,路径参数改为双斜杠就可以了。
3.用tensorboard查看生成的graph
(1)在谷歌浏览器中打开http://127.0.0.1:6006/,会显示橙色界面;
(2)在第一行的选项卡中选择graphs,即可看到结果。
参考链接:https://blog.csdn.net/czq7511/article/details/72480149
https://www.jianshu.com/p/db63b51072b7
http://www.tensorfly.cn/tfdoc/how_tos/summaries_and_tensorboard.html
GitHub 加速计划 / te / tensorflow
184.55 K
74.12 K
下载
一个面向所有人的开源机器学习框架
最近提交(Master分支:2 个月前 )
a49e66f2
PiperOrigin-RevId: 663726708
2 个月前
91dac11a
This test overrides disabled_backends, dropping the default
value in the process.
PiperOrigin-RevId: 663711155
2 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)