I've tried define a simple architecture to use on MNIST dataset , I start defined my architecture like this :
model = Sequential()
model.add(Convolution2D(32,(3,3),activation='relu',input_shape = (1,28,28)));
in this step I checked my network out put :
model.output_shape
it gives me this :
(None, -1, 26, 32)
could someone explain to me what is the meaning of negative dimension (-1) ?