tensorflow-estimator如何降低为1.15.0
时间: 2024-05-03 08:16:36 浏览: 200
tensorflow-1.15-v10.tar.gz
5星 · 资源好评率100%
要将tensorflow-estimator降级为1.15.0,可以使用以下命令:
```
pip install tensorflow-estimator==1.15.0
```
这将会安装tensorflow-estimator的1.15.0版本。请注意,如果您已经安装了其他版本的tensorflow-estimator,则可能需要先将其卸载,然后再安装1.15.0版本。可以使用以下命令卸载tensorflow-estimator:
```
pip uninstall tensorflow-estimator
```
然后再使用第一个命令安装1.15.0版本。
阅读全文