打印并获取训练参数(重量)

时间:2017-03-12 07:32:33

标签: python tensorflow

我需要打印训练步骤中使用的所有权重和偏差,我们可以在下面的代码https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/udacity/6_lstm.ipynb中看到。我们有变量v包含所有参数,我试图打印它但我没有NONE作为结果,我试图使用saver()和resrore但我无法读取检查点文件

所以有任何解决方案 感谢

1 个答案:

答案 0 :(得分:0)

all_vars = tf.global_variables()
# just want to make sure all our variables are there!
for v in all_vars:
    v_ = sess.run(v)
    print("This is {} with value: {}".format(v.name, v_))