安装了tensorflow 2.x 的情况下使用tensorflow 1.x 方法的办法

python安装了tensorflow2.x版本,但是代码使用的是tensorflow1.x版本,不用安装tensorflow1.x版本,也可以使用tensorflow1.x的方法,解决方案如下:

把整个TensorFlow2.0的调用转换为TensorFlow1.0的调用,无需对单个函数就行修改:
 

# import tensorflow as tf   # 2021-11-09 tensorflow2.0 version
#2021-11-09 tensorflow 2.0 version using version 1.x method 
import tensorflow._api.v2.compat.v1 as tf
tf.disable_v2_behavior()

你可能感兴趣的:(tensorflow,python)