Cause: No module named 'tensorflow_core.estimator'
时间: 2023-10-26 18:47:09 浏览: 462
tensorflow.md
这个错误可能是因为你使用的 TensorFlow 版本与代码中使用的 TensorFlow 版本不兼容。`tensorflow_core.estimator` 是 TensorFlow 1.x 中的模块,而 TensorFlow 2.x 中已经被移除了。如果你的代码是基于 TensorFlow 1.x 写的,那么你需要安装 TensorFlow 1.x 版本,并且使用 `import tensorflow.estimator`。如果你的代码是基于 TensorFlow 2.x 写的,那么你需要使用 `import tensorflow.compat.v1.estimator`。另外,你也可以尝试更新 TensorFlow 到最新版本,看看是否能够解决这个问题。
阅读全文