安装tensorflow2.x版本如何运行tensorflow1.x版本下的代码

只需要把原来import tensorflow as tf 改成 import tensorflow.compat.v1 as tf

然后再加tf.disable_v2_behavior()

复制以下代码就可以了

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()

你可能感兴趣的:(tensorflow,深度学习,人工智能)