(1) AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'BasicLSTMCell'

原因是没有BasicLSTMCell,tensorflow1.2.1中改了函数位置

改为tf.nn.rnn_cell.BasicLSTMCell(num_hidden, forget_bias=1.0) 就好

 (2)AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'static_rnn'

原因是没有static_rnn,tensorflow1.2.1中改了函数位置

改为outputs, states = tf.nn.rnn(lstm_cell, x, dtype=tf.float32)就好

或者是替换为tf.nn.dynamic_rnn,不过要注意输入



Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐