我使用tf.rnn_cell.BasicLSTMCell,我想在训练时显示忘记门值。我使用tf.get_variable(),但有一些错误。我该怎么做?
with tf.variable_scope("new_c", reuse=True):
v1 = tf.get_variable("new_c") # The same as v above.
错误:
变量new_c / new_c不存在,或者未使用tf.get_variable()创建。你的意思是在VarScope中设置reuse = None吗?