Tensorlfow,运行错误

时间:2017-07-24 01:58:19

标签: python numpy tensorflow

我想知道为什么会出现此错误。 输入是图像文件(24*375*3(width, height, channels)images, *.png),输出标记为文件(.csv),标签为布尔(0或1)。

这是我的github https://github.com/dldudwo0805/DeepLearningPractice

PLZ。给我建议。

错误代码是 -

The value of a feed cannot be a tf.Tensor object. Acceptable feed values include Python scalars, strings, lists, numpy ndarrays, or TensorHandles.

1 个答案:

答案 0 :(得分:1)

y_data = tf.reshape(y_data, [50, 1])

y_data是一个张量。尝试使用np.reshape而不是tf.reshape