1. 程式人生 > >從訓練好的tensorflow模型中列印訓練變數

從訓練好的tensorflow模型中列印訓練變數

從tensorflow 訓練後儲存的模型中列印訓變數:使用tf.train.NewCheckpointReader()

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

列印變數

w = reader.get_tensor("fc1/W")
print type(w)
print w.shape
print w[0]