有谁可以告诉我为什么我无法将小批量数据提供给我的输入tf.nn.placeholder
?最近发生了什么变化,因为去年它对我有用了吗?
错误:
Cannot feed value of shape (1024, 784) for Tensor 'nn_inputs:0', which has shape '(?, 768)'
我的输入tf.nn.placeholder
是:
inputs_ = tf.placeholder(tf.float32, [None, 768], name="nn_inputs")