高效码农

Tensorflow报错信息修改

一、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

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »