Course 4 Week 1 happy model issue

Hello everyone
this is my happy model and i have some issues:


            
            tfl.ZeroPadding2D(padding=3)(64,64,3),
          
    
    return model

when i execute the code, that’s what I get
ValueError: Input 0 of layer zero_padding2d_6 is incompatible with the layer: expected ndim=4, found ndim=0. Full shape received:

You are passing the input shape as a data argument. That is incorrect.

Please edit your post and remove the code. The Honor Code does not allow sharing your code. Thanks!

I updated the post .
what’s wrong with the input

The shape should be inside the parentheses, not a separate set of parentheses.

Hi, I tried
tf.keras.layers.ZeroPadding2D(padding=3,(64,64,3)),

This didn’t worked

Try including the argument name.