According to the documentation website (https://keras.io/layers/convolutional/) the kernel size of a keras convolution layer is defined as height x width:
kernel_size: An integer or tuple/list of 2 integers, specifying the height and width of the 2D convolution window. Can be a single integer to specify the same value for all spatial dimensions.
In the code documentation however it is defined as the exact opposite:
kernel_size: An integer or tuple/list of 2 integers, specifying the width and height of the 2D convolution window. Can be a single integer to specify the same value for all spatial dimensions.
Which one is true? As far as I figured out, the definition of the website should be the right one, am i right?
Conv2D. It has the exact information which has in website. - Krunal V