self.input_y = tf.placeholder(tf.int32, [None,],name="input_y")
[无,]很奇怪,我不知道应该输入什么样的数据形状,并且出现如下错误:
ValueError: Cannot feed value of shape (64, 1999) for Tensor 'input_y:0', which has shape '(?,)'
答案 0 :(得分:0)
无论长度如何,一维数组都可以。
如果长度受限制,则None
应替换为固定数字。
通常,张量具有shape
属性和get_shape()
方法来获得静态形状。
详细信息可以在官方教程中找到,例如https://www.tensorflow.org/guide/tensors和https://www.tensorflow.org/performance/xla/shapes