why is padding = valid in 1st layer and 2nd layer
when we apply (227-11)/4 + 1 = 55
and after we apply padding the dimension should not be 55,55,96
it should be more than 55 as we are applying padding
why is padding = valid in 1st layer and 2nd layer
when we apply (227-11)/4 + 1 = 55
and after we apply padding the dimension should not be 55,55,96
it should be more than 55 as we are applying padding
Hey @sinhadivyam19, you are getting wrong meaning padding= ‘valid’. This means no padding is applied, and return the output as it is.
padding = ‘same’ means return the output such that input and output sizes are same.
Hope this resolved your doubt.
Plz mark the doubt as resolved in my doubts sectionl.