我正在使用tensorflow 2.4.1和tensorflow 1中的代码。每当我运行以下命令时,我都会得到一个错误
inputs = tf.placeholder(tf.int32, [None, None], name = 'input')
错误
AttributeError Traceback (most recent call last)
<ipython-input-14-c2404ca8696c> in <module>()
----> 1 inputs = tf.placeholder(tf.int32, [None, None], name = 'input')
AttributeError: module 'tensorflow' has no attribute 'placeholder'
tf.keras.Input((代替tf.placeholder((在Tensorflow 2.x版本中实例化keras张量。
请查看此链接以了解更多详细信息。