I have been trying to understand Convolutional Neural Network but I mess up with its output size.
The Formula is pretty much straightforward but I still end up confusing myself. I have learned from many sources on the Internet like deeplearning.ai of AndrewNg.
So here is where I am getting confused.
OutputSize = InputSize - Filter + 1
If my InputSize
is 11 x 11 x 16
and I use max pool
with filter size 2
. By math my shape should be 5.5 x 5.5 x 16
.
Will this float value (5.5)
rounded off or will it be taken as 5
when you feed it?