Tensorflow报错信息修改

@高效码农  August 18, 2019

一、Please use tf.compat.v1.get_variable instead

确切的说不是报错,是警告⚠️;

原因: 为了使TensorFlow在版本2.0中更加“Pythonic”,根据设计,TF 2.0没有tf.Session。

修改方法:

import tensorflow as tf

tf = tf.compat.v1

或者:

import tensorflow.compat.v1 as tf


评论已关闭