tensorflow-estimator==1.15.1与tensorflow版本
时间: 2023-08-29 22:10:02 浏览: 1082
tensorflow-gpu版本安装教程(过程详细).pdf
5星 · 资源好评率100%
tensorflow-estimator==1.15.1是与TensorFlow 1.15版本兼容的版本。它是TensorFlow中的一个高级API,用于构建和训练机器学习模型。如果你想在TensorFlow 1.15版本中使用tensorflow-estimator,你可以通过以下命令安装它:
```
pip install tensorflow-estimator==1.15.1
```
请注意,tensorflow-estimator是在TensorFlow 2.0版本中被标记为不推荐使用的API,建议在TensorFlow 2.x版本中使用tf.keras替代。
阅读全文