谁能告诉我为什么我不能将小批量数据提供给我的输入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")