What is the output shape of a convolutional layer with 32 filters, a filter size of 3x3, and input shape of 224x224x3?
b) 222x222x32
Explanation: The output shape of a convolutional layer can be calculated using the formula: (W - F + 2P)/S + 1, where W is the input shape, F is the filter size, P is the padding size, and S is the stride. Applying this formula, we get (224 - 3 + 2*0)/1 + 1 = 222. Therefore, the output shape is 222x222x32.