Hi Everyone,
I am stuck at def happyModel():
First two lines of my code are:
model = tf.keras.Sequential([
## ZeroPadding2D with padding 3, input shape of 64 x 64 x 3
tfl.ZeroPadding2D(padding = 3, input_shape = (64, 64, 3) )
## Conv2D with 32 7x7 filters and stride of 1
tfl.Conv2D(filters=32,kernel_size=(7,7),strides=(1, 1))
Testing this block results in:
tfl.Conv2D(filters=32,kernel_size=(7,7),strides=(1, 1))
^
SyntaxError: invalid syntax
I am not familiar with TensorFlow yet, but how can I solve this syntax error?
Thanks,
Ray