module 'tensorflow.compat.v1' has no attribute 'contrib'
时间: 2023-09-21 21:02:38 浏览: 64
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为您使用的 TensorFlow 版本不兼容 `contrib` 模块。在 TensorFlow 2.0 中,`contrib` 模块已被移除。如果您的代码中使用了 `contrib` 模块,建议您将 TensorFlow 版本降级到 1.x。如果您想在 TensorFlow 2.0 中使用 `contrib` 模块,可以考虑使用 TensorFlow 2.0 中的兼容性模块,例如 `tensorflow.compat.v1`。您可以按照以下方式导入 `contrib`:
```
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
这将启用 TensorFlow 1.x 的兼容模式,并允许您使用 `contrib` 模块。
阅读全文