module 'tensorflow.compat.v2' has no attribute '__internal__'如何解决
时间: 2023-10-25 22:09:41 浏览: 1592
递归神经网络报错has no attribute 'core_rnn_cell'解决方案
这个错误通常是因为 TensorFlow 版本不兼容导致的。可以尝试升级或降级 TensorFlow 版本来解决问题。
如果你使用的是 TensorFlow 2.x 版本,可以尝试使用以下代码来解决该问题:
```
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
如果你使用的是 TensorFlow 1.x 版本,可以尝试使用以下代码来解决该问题:
```
import tensorflow.compat.v2 as tf
tf.compat.v1.disable_eager_execution()
```
阅读全文