我正在使用tensorflow-gpu版本1.12.0
我用tf.contrib.legacy_seq2seq.attention_decoder
做了一些实验。
当cell
属性为tensorflow.python.ops.rnn_cell.BasicRNNCell
或tensorflow.python.ops.rnn_cell.GRUCell
时,它可以正常工作。
但是当cell = tf.nn.rnn_cell.LSTMCell
或cell = tensorflow.python.ops.rnn_cell.BasicLSTMCell
出现错误时:
TypeError: Tensor objects are only iterable when eager execution is enabled. To iterate over this tensor use tf.map_fn.
我尝试了很多方法,但不知道如何解决此问题。请给我一些解决方案