ValueError:输入0与层conv2d_1不兼容:预期ndim = 4,发现ndim = 3,更改了尺寸,但无济于事

时间:2019-05-15 18:12:00

标签: python

  

ValueError:输入0与层conv2d_1不兼容:预期   ndim = 4,找到的ndim = 3

我在stackoverflow上看到了很多问题,解决方案通常是更改input_shape,但是我已经做到了。

x = tf.placeholder(dtype=tf.float32, shape=(1, 28, 28))

layer1_en = Conv2D(16, kernel_size=(3, 3), strides=1, activation="relu", padding="same")(x)

0 个答案:

没有答案