Hi,
For some reason the tf.keras.Sequential is not working for me, and I get a message that I have a comma on the left of the all the layers commands, but I don’t! Its on the right as it should!
I tried to use model.add to build the sequential and it also not working, giving similar errors, claiming some symbols being on the beginning of a command, when they’re actually at the end as it should! (See example below)
Im not sure, but maybe it relates to the fact that only in this course (CNN), for some reason all the writings in the jupyter notebook aligned to the right, not like in the previous courses, that they were aligned to the left as it should. Please help me here, as its very frustrating and Im wasting a lot of time on something that looks like a technical problem of coursera.
Example:
model = tf.keras.Sequential([
tfl.ZeroPadding2D(padding=3,(64,64,3)),
tfl.Conv2D(32,7),
…
])
the error I get:
file “”, line 21
,tfl.ZeroPadding2D(padding=3,(64,64,3))
^
SyntaxError: positional argument follows keyword argument