AttributeError: module 'tensorflow' has no attribute 'keras'
时间: 2023-10-05 20:09:33 浏览: 57
这个错误可能是因为您使用的 TensorFlow 版本不支持 `tensorflow.keras` 模块。在 TensorFlow 2.0 之前的版本中,Keras 是作为 TensorFlow 的一个独立模块使用的。但是在 TensorFlow 2.0 中,Keras 已成为 TensorFlow 的一部分。如果您使用的是 TensorFlow 2.0 或更高版本,应该使用 `import tensorflow.keras` 而不是 `import keras`。如果您使用的是早期版本的 TensorFlow,您需要确保已经安装了 Keras,并使用 `import keras` 来导入 Keras。
阅读全文