一般如果在1.x版本中有的函数,而在2.x中没有通常是需要在tf.xxx()之间加入v1.compat

import tensorflow as tf 
Y = tf.placeholder(dtype=tf.float32, shape=[batch_size, LABEL], name='Y')

需要改成

Y = tf.compat.v1.placeholder(dtype=tf.float32, shape=[batch_size, LABEL], name='Y')

但是会报错AttributeError: module 'tensorflow' has no attribute 'placeholder'

需要加入一句tf.compat.v1.disable_eager_execution(),以placeholder为例

import tensorflow as tf
tf.compat.v1.disable_eager_execution()
Y = tf.compat.v1.placeholder(dtype=tf.float32, shape=[batch_size, LABEL], name='Y')

参考链接:https://blog.csdn.net/qq_39777550/article/details/104224296

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐