New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rnn_cell has no BasicLSTMCell #6432
Comments
You can use BasicLSTMCell through I was able to verify this in 0.12 |
gunan I hwas having the same problem as xusong2008 . I replaced tf.contrib.rnn.BasicLSTMCell by tf.nn.rnn_cell. BasicLSTMCell as you said but now a new error is being shown: Traceback (most recent call last): Pls help soon !! |
Looks like your is a breakage in one of the models in our models repository. |
@sharod I think I saw you open an issue in github.com/tensorflow/models and close it later -- did you end up figuring it out? |
AttributeError: module 'tensorflow.contrib.rnn' has no attribute 'static_rnn' |
@userljw please upgrade your TensorFlow installation to 1.4. |
lstm_cell = tf.contrib.rnn.BasicLSTMCell(
AttributeError: 'module' object has no attribute 'BasicLSTMCell'.
Is it been replaced by other cell?
The text was updated successfully, but these errors were encountered: