Tensorflow2.x下如何运行1.x的代码

1.禁用v2,修改import tensorflow as tf为

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

2.Tensorflow2.x下如何运行1.x的代码_第1张图片

 

你可能感兴趣的:(强化学习,python,tensorflow,深度学习,机器学习)