Tensorflow报错信息修改

2019-08-18T11:30:00

一、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
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »