The instructions for Exercise 1 (Assignment 2) says:
ZeroPadding2D with padding 3, input shape of 64 x 64 x 3
We are asked to look for help at https://www.tensorflow.org/api_docs/python/tf/keras/layers) which gives us this syntax:
tf.keras.layers.ZeroPadding2D(padding=(1, 1), data_format=None, **kwargs)
Why am I given a syntax error?
" File “”, line 36
tf.keras.layers.ZeroPadding2D(padding=(3,3))
^
SyntaxError: invalid syntax"
I did try using tfl.ZeroPadding2D but that did not work either.
Also, It is not clear where to put the input shape in the ZeroPadding2D.
I used something like this but it does not seem to help:
tf.keras.layers.Input(shape=(64,64,3))
tf.keras.layers.ZeroPadding2D(padding=(3,3))

