I'm a bit confused by the idea of a stride that is, say, (2, 2) in keras.
What is the second 2 in the tuple (2,2) doing?
I'd understand if the stride was (2), because then we'd be moving a filter across an image by 2 pixels.
If we are striding by 2 along x and 2 along y, then we'd be running diagonally across an image. That doesn't make much sense.
The Keras documentation is not clear.
Thanks.