输出checkpoint变量名及其值

from tensorflow.python import pywrap_tensorflow
import os
model_dir="./"
checkpoint_path = os.path.join(model_dir, "model.ckpt")
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)
    print(reader.get_tensor(key))

猜你喜欢

转载自blog.csdn.net/MacwinWin/article/details/80511719