ttributeError: module 'tensorflow._api.v1.compat.v2' has no attribute '__internal__'
时间: 2023-09-22 20:12:21 浏览: 151
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误可能是由于TensorFlow的版本问题引起的。如果你正在使用TensorFlow 2.x版本,但代码中使用了旧的TensorFlow 1.x API,那么就会出现这个错误。你可以尝试更新你的代码来使用TensorFlow 2.x API。如果你的代码已经使用了TensorFlow 2.x API,那么你可以尝试升级TensorFlow版本或者检查是否有其他库与TensorFlow版本不兼容导致的错误。你可以尝试在代码开头添加以下行来解决这个问题:
```
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
这将禁用TensorFlow 2.x的行为,并将其切换回1.x的行为。
阅读全文