AttributeError: module 'tensorflow._api.v2.compat.v1' has no attribute 'contrib'
时间: 2023-10-16 13:08:44 浏览: 215
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误可能是由于您使用的 TensorFlow 版本不同所致。在 TensorFlow 2.0 中,`contrib` 模块被移除了。如果您的代码中使用了 `contrib` 模块,请尝试升级到 TensorFlow 2.0 或更高版本,并使用 TensorFlow 官方推荐的替代方法来实现相同的功能。如果您需要使用 `contrib` 模块中的特定函数,可以尝试使用 TensorFlow Addons,它是一个独立的开源软件包,提供了许多与 `contrib` 相似的函数。
阅读全文