网络编程
位置:首页>> 网络编程>> Python编程>> tensorflow查看ckpt各节点名称实例

tensorflow查看ckpt各节点名称实例

作者:深夜虫鸣  发布时间:2021-03-26 14:04:49 

标签:tensorflow,ckpt,节点名称

运行下列脚本,可以打印出模型各个节点变量的名称:


from tensorflow.python import pywrap_tensorflow
import os

checkpoint_path=os.path.join('model.ckpt-131805')
reader=pywrap_tensorflow.NewCheckpointReader(checkpoint_path)
var_to_shape_map=reader.get_variable_to_shape_map()
for key in var_to_shape_map:
print 'tensor_name: ',key

checkpoint_path为自己的模型路径

来源:https://blog.csdn.net/u010122972/article/details/85989131

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com