tensorflow2.0.0 安装tensorflow.compat.v1库
时间: 2023-06-09 15:08:37 浏览: 150
Windows-Tensorflow2.0.0-Keras2.3.1.zip
5星 · 资源好评率100%
您可以通过以下命令在TensorFlow 2.0.0中安装tensorflow.compat.v1库:
```
pip install tensorflow==2.0.0
```
然后在代码中使用以下命令导入tensorflow.compat.v1库:
```
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
阅读全文