错误
TypeError: Failed to convert object of type class ‘list’ to Tensor. Contents: [Dimension(None), -1
建立placeholder 建议尽量在维度上不要使用未知量(None),避免带来不必要麻烦,
建议如下建立
img = tf.placeholder(tf.float32, [BATCH_SIZE, IMAGE_SIZE, IMAGE_SIZE, IMAGE_C]), 使用固定值。
错误
TypeError: Failed to convert object of type class ‘list’ to Tensor. Contents: [Dimension(None), -1
建立placeholder 建议尽量在维度上不要使用未知量(None),避免带来不必要麻烦,
建议如下建立
img = tf.placeholder(tf.float32, [BATCH_SIZE, IMAGE_SIZE, IMAGE_SIZE, IMAGE_C]), 使用固定值。