from tensorflow.contrib import learn ModuleNotFoundError: No module named 'tensorflow.contrib'
时间: 2023-11-07 09:05:06 浏览: 79
No module named 'tensorflow.examples'
您遇到的错误是因为 TensorFlow 2.0 版本中已经不再支持 `tensorflow.contrib` 模块。在 TensorFlow 2.0 及更高版本中,许多函数和功能已经迁移到其他模块中或者被废弃,所以 `tensorflow.contrib` 模块不再被包含在 TensorFlow 安装中。
要解决这个问题,您可以尝试更新您的代码,以便使用 TensorFlow 2.0 中提供的替代功能。如果您使用的是旧版本的代码,您可能需要进行相应的修改。
如果您确实需要使用 `tensorflow.contrib` 中的某些特定功能,您可以尝试使用 TensorFlow 1.x 版本。您可以通过安装 TensorFlow 1.x 来解决此问题,例如执行 `pip install tensorflow==1.15`。
阅读全文