model = tf.keras.Sequential([
## ZeroPadding2D with padding 3, input shape of 64 x 64 x 3
## Conv2D with 32 7x7 filters and stride of 1
## BatchNormalization for axis 3
## ReLU
## Max Pooling 2D with default parameters
## Flatten layer
## Dense layer with 1 unit for output & 'sigmoid' activation
Even after following this exact sequence, I am getting this error:
Test failed
Expected value
[‘ReLU’, (None, 64, 64, 32), 0]
does not match the input value:
[‘Activation’, (None, 64, 64, 32), 0]