I get this message when I run the cell for this exercise:
Test failed. Your output is not as expected output.
There is no other information. There is no “Expected output” that I can use to debug. I am not sure how else to debug. Can you advise please? Thanks.
I was able resolve this issue by using the following borrowed from the happy_model section.
for layer in summary(conv_model):
print(layer)
From this, I was able to see the complete output and compare it to the output defined in the evaluation section. My issue was I did not specify padding in one of the layers and the default was used.
1 Like
Thanks for your report.