What I did

What I learned

Review for Test

\[\big(\frac{W−K+2P}{S}\big)+1\]

For example, consider the output size of a CNN with an input size of 32x32x32 when 8 filters of size 6x6 are applied to it with a padding of 1 and stride size of 2.

Output_Shape = (32-6+2(1))/2+1 = 15
Output_Shape = 15 x 15 x 40

Here’s an example image (it’s AlexNET) to see some concrete examples of this calculation:

alex table

What I will do next