Query regarding (.output_shape) parameters used in CNN model
I am applying CNN model on my dataset for predictions. After reshaping the dimensions, the input_shape of my model1 becomes:
model1.input_shape: (None, 1, 3, 4)
then i apply CNN ist input layer defined below:
model1.add(Convolution2D(128, (2,2), border_mode= 'valid' , input_shape=(1, 3, 4), activation= 'relu'))
here above 1 is number of channel, 3,4 represents my nodes means 12 input nodes or features, now wehn i check the output_shape of model1, it is:
model1.output_shape: (None, 128, 2, 3)
here 128 are number of neurons i specified in my input layer. My question is what does the elements 2,3 shows here?
Topic deep-learning machine-learning
Category Data Science