脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 从训练好的tensorflow模型中打印训练变量实例

从训练好的tensorflow模型中打印训练变量实例

2020-04-10 13:49aiseu001 Python

今天小编就为大家分享一篇从训练好的tensorflow模型中打印训练变量实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

从tensorflow 训练后保存的模型中打印训变量:使用tf.train.NewCheckpointReader()

?
1
2
3
4
import tensorflow as tf
reader = tf.train.NewCheckpointReader('path/alexnet/model-330000')
dic = reader.get_variable_to_shape_map()
print dic

从训练好的tensorflow模型中打印训练变量实例

打印变量

?
1
2
3
4
w = reader.get_tensor("fc1/W")
print type(w)
print w.shape
print w[0]

从训练好的tensorflow模型中打印训练变量实例

以上这篇从训练好的tensorflow模型中打印训练变量实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/aiseu001/article/details/79851176

延伸 · 阅读

精彩推荐