What are Dropout Layers ? #2
-
Hey Gaurav, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey @MEGA-BLASTER2004 Dropout layer drops out few neurones in the network. This to reduces the problem of overfitting. Here, a pic for clear understanding : When you use a complex model like If you still can't get over it check this out : Deep Learning: Using Dropout Layers in CNNs to prevent Overfitting!
|
Beta Was this translation helpful? Give feedback.
Hey @MEGA-BLASTER2004
Dropout layer drops out few neurones in the network. This to reduces the problem of overfitting. Here, a pic for clear understanding :
When you use a complex model like
EfficientNetB1
the model tends to overfit on the data. To prevent overfitting we need to reduce the complexity, by dropping out few neurones. And that's what Dropout Layer comes into the play.If you still can't get over it check this out : Deep Learning: Using Dropout Layers in CNNs to prevent Overfitting!