You have to append the Dropout
and MaxPooling2D
layers to the model that you’ve already created, i.e., conv
. It can be done like this: Dropout()(you_model)
16 Likes
You have to append the Dropout
and MaxPooling2D
layers to the model that you’ve already created, i.e., conv
. It can be done like this: Dropout()(you_model)