AttributeError: module 'tensorflow._api.v2.compat.v1' has no attribute 'keras'
时间: 2023-10-15 10:07:41 浏览: 124
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为 TensorFlow 版本不兼容导致的,你可以尝试更新或降低 TensorFlow 版本来解决该问题。或者,您可以使用 TensorFlow 2.x 中提供的 `tensorflow.compat.v1` 模块以替代 `tensorflow._api.v2.compat.v1`。而 `keras` 模块在 TensorFlow 2.x 中已经是标准模块,不需要显式导入。所以你可以尝试将 `tensorflow._api.v2.compat.v1.keras` 更改为 `tensorflow.keras`,以便解决该错误。
阅读全文