AttributeError: module 'keras.api._v1.keras' has no attribute 'rnn'
时间: 2023-10-16 11:05:47 浏览: 212
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你使用了一个已经被弃用的 Keras API。在新版本的 Keras 中,使用了更加统一的 API 来处理循环神经网络,因此 `keras.rnn` 已经被弃用了。你可以尝试使用 `keras.layers` 中的循环层(例如 `keras.layers.LSTM`)来替代。如果你仍然想使用 `keras.rnn`,可以考虑将 Keras 降级到旧版本。
阅读全文