import tensorflow as tf
model_path = "./UGATIT.model-1000000"
outfile = "./output.txt"
## 下面两个reader作用等价
#reader = pywrap_tensorflow.NewCheckpointReader(model_path)
reader = tf.train.NewCheckpointReader(model_path)
## 用reader获取变量字典,key是变量名,value是变量的shape
var_to_shape_map = reader.get_variable_to_shape_map(<
加载tensorflow .meta图结构,打印各个节点名
最新推荐文章于 2024-10-10 15:44:43 发布
本文介绍如何在TensorFlow中加载.meta文件,解析图结构,并详细列出每个节点的名称,这对于理解模型的内部工作原理和进一步操作模型非常有用。
摘要由CSDN通过智能技术生成