keras-team/keras-applications

a small mistake of resnet ,leading to inaccuracy shape of internal layer

Closed this issue · 1 comments

x = layers.MaxPooling2D((3, 3), strides=(2, 2))(x)

the MaxPooling need to add a extra argument "padding="same"", if not ,the output_shape of the layer is less 1 than normal

I'd like to contribute to this. But before I jump in, can you clarify a bit more as to what the issue is? What do you mean by "normal" when you say "1 less than normal"?