AttributeError: module 'tensorflow._api.v1.compat' has no attribute 'framework'
时间: 2023-09-20 09:08:38 浏览: 62
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是由于使用了不兼容的 TensorFlow 版本导致的。在 TensorFlow 2.0 版本中,API 发生了一些重大的变化,导致许多旧的代码无法正常运行。请检查您的 TensorFlow 版本是否与您的代码兼容。如果您的代码是使用 TensorFlow 1.x 编写的,那么您需要使用 TensorFlow 1.x 版本运行该代码。您可以通过以下命令检查您的 TensorFlow 版本:
```
import tensorflow as tf
print(tf.__version__)
```
如果您的 TensorFlow 版本不正确,请安装正确的版本,或者将您的代码更新为兼容新版本的 TensorFlow。
阅读全文