Happy model as a sequential model worked fine. However during exercise 2: convolutional model with Functional API, I get error in my first ReLU layer:
No matter what I do, it does not work. Please help
Happy model as a sequential model worked fine. However during exercise 2: convolutional model with Functional API, I get error in my first ReLU layer:
No matter what I do, it does not work. Please help
Your syntax for the ReLU layer is incorrect.
It’s “ReLU()(Z)”
It’s two statements jammed into one line of code.
Your lines 40, 42, and 43 all do it correctly. Only your line 41 has the error.
Thank you so much! My mistake!