tensorflow1.2中出现错误问题AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'BasicLSTMCell'
·
(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,不过要注意输入
更多推荐
已为社区贡献8条内容
所有评论(0)