在张量流中重用LSTM单元

时间:2017-01-19 09:18:20

标签: python tensorflow lstm

我想用一个LSTM细胞训练很多病例。

我在下面尝试了,它给了我一个像select('towns.id', 'towns.name', ...)

这样的错误

我认为发生此错误是因为我尝试重用LSTM单元格。 我无法找到解决此错误的方法。

有人说使用ValueError: Variable RNN/BasicLSTMCell/Linear/Matrix already exists, disallowed. Did you mean to set reuse=True in VarScope? Originally defined at: 函数重用LSTM单元格,但我无法理解如何使用它。 以下是我的源代码。我该如何解决这个问题

get_variable()

1 个答案:

答案 0 :(得分:0)

您可以使用

tf.get_variable_scope().reuse_variables()