tensorflow2.0中from tensorflow.contrib import learn
时间: 2024-05-24 10:15:36 浏览: 98
tensorflow2.0学习资源
在 TensorFlow 2.0 中,`tensorflow.contrib` 被移除了。如果你需要使用类似于 `tensorflow.contrib.learn` 的 API,可以使用 TensorFlow 的高级 API,例如 `tf.keras` 和 `tf.data`。这些新的 API 提供了更好的可读性、更好的性能和更好的可维护性。同时,它们也更加稳定,因为它们是 TensorFlow 核心团队所维护的。
阅读全文