educative.io

Type in solution, please have a look, thanks

Hi the answer has a type, took me 15 minutes to realize the reason it says my code is incorrect is that its answer has a typeo. in second convolution, name=“conv2” is written as “conv1” in solution. please have a look.
Thanks.


Course: Educative: Interactive Courses for Software Developers
Lesson: Educative: Interactive Courses for Software Developers

@S_Arbabi Hi, The issue is with the naming of the second Conv2D layer and the subsequent MaxPool2D layer. In the second convolution, the Conv2D layer is named conv1, and the MaxPool2D layer refers to the output of conv1 as its input. So if we use conv2 , the MaxPool2D layer cannot find its input and produces an error.