Tensorflow2.x版本执行1.x版本代码出错如 AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘ 的方法
一般如果在1.x版本中有的函数,而在2.x中没有通常是需要在tf.xxx()之间加入v1.compat如import tensorflow as tfY = tf.placeholder(dtype=tf.float32, shape=[batch_size, LABEL], name='Y')需要改成Y = tf.compat.v1.placeholder(dtype=tf.float32, s
·
一般如果在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
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐



所有评论(0)