AttributeError: module 'tensorflow_core._api.v2.compat.v1' has no attribute 'estimator'
时间: 2023-08-27 12:15:02 浏览: 368
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为使用了过时的 TensorFlow API。在新版本的 TensorFlow 中,`estimator` 模块被移动到了 `tensorflow.compat.v1` 下。你可以尝试将代码中的 `tensorflow_core._api.v2.compat.v1` 替换为 `tensorflow.compat.v1`,然后再次运行看看是否能够解决问题。
阅读全文