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