网络编程
位置:首页>> 网络编程>> Python编程>> tensorflow实现读取模型中保存的值 tf.train.NewCheckpointReader

tensorflow实现读取模型中保存的值 tf.train.NewCheckpointReader

作者:onexming  发布时间:2022-08-21 05:25:51 

标签:tensorflow,模型,保存值

使用tf.trian.NewCheckpointReader(model_dir)

一个标准的模型文件有一下文件, model_dir就是MyModel(没有后缀)


checkpoint
Model.meta
Model.data-00000-of-00001
Model.index

import tensorflow as tf
import pprint # 使用pprint 提高打印的可读性
NewCheck =tf.train.NewCheckpointReader("model")

打印模型中的所有变量


print("debug_string:\n")
pprint.pprint(NewCheck.debug_string().decode("utf-8"))

tensorflow实现读取模型中保存的值 tf.train.NewCheckpointReader

其中有3个字段, 分别是名字, 数据类型, shape

获取变量中的值


print("get_tensor:\n")
pprint.pprint(NewCheck.get_tensor("D/conv2d/bias"))

tensorflow实现读取模型中保存的值 tf.train.NewCheckpointReader


print("get_variable_to_dtype_map\n")
pprint.pprint(NewCheck.get_variable_to_dtype_map())
print("get_variable_to_shape_map\n")
pprint.pprint(NewCheck.get_variable_to_shape_map())

tensorflow实现读取模型中保存的值 tf.train.NewCheckpointReader

来源:https://blog.csdn.net/qq_39124762/article/details/82951818

0
投稿

猜你喜欢

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