AttributeError: module 'tensorflow.compat.v1' has no attribute 'contrib'
时间: 2023-10-15 19:06:20 浏览: 26
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为 TensorFlow 版本不兼容导致的。在 TensorFlow 2.0 中,已经移除了 contrib 包,所以如果你使用的是 TensorFlow 2.0 或更高版本,就不会有 contrib 包。
如果你的代码中使用了 contrib 包,可以考虑升级 TensorFlow 到最新版本,或者修改代码不使用 contrib 包中的功能。
如果你需要使用 contrib 包中的某些功能,可以考虑使用 TensorFlow 1.x 的版本,或者使用其他替代方案。
阅读全文