why it is showing this error? what can i do to resolve this?
Error using keras model
Hey @Roopa1i_ma1hotra, you have forgot to add a closing bracket at the end of line 8 in this screenshot. Please replace this line :
model.add(Conv2D(64,(3,3), activation='relu')
with this line :
model.add(Conv2D(64,(3,3), activation='relu'))
I hope this clears your doubt !
Please mark the doubt as resolved in your doubts section !
Happy Learning !