AttributeError: module 'tensorflow.compat.v2' has no attribute '__internal__'
时间: 2023-07-06 19:08:46 浏览: 130
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为 TensorFlow 版本不兼容导致的。请尝试升级或降级 TensorFlow 版本。如果你使用的是 TensorFlow 2.x,可以尝试以下代码解决问题:
```python
import tensorflow.compat.v2 as tf
tf.compat.v1.disable_v2_behavior()
```
如果你仍然遇到问题,请检查你的 TensorFlow 版本,并查看是否有其他版本可用。
阅读全文