Hi, I’m trying to insert the layers in the sequential model but I keep getting a syntax error and I don’t understand what’s the problem. For example:
tf.keras.Sequential([
layers.ZeroPadding2D(…)
layers.Conv2D(…)
…
])
I also tried to use ‘tfl’ like the hint says but it also doesn’t work .