当前位置: 代码迷 >> 综合 >> TensorFlow 出现错误 TypeError: Failed to convert object of type class 'list' to Tensor.
  详细解决方案

TensorFlow 出现错误 TypeError: Failed to convert object of type class 'list' to Tensor.

热度:70   发布时间:2023-11-03 20:54:40.0

错误
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]), 使用固定值。

  相关解决方案