In below Image:
We are using Dropout layer after 2 convolutional layers.Dropout will drop some neurons .Will it Drop neurons from previous 2 Convolutional layers or next 2 convolutional layers.How is it happening internally ,I am not getting ?
CNN 08 - Building Fashion MNIST CNN in Keras
Dropout layer is added for regularization of model, and making our model more robust.
Dropout layer, switched off some of the neurons in the previous layer only by setting their output to zeros. So coming to your question, it will drop neurons only in one layer, which is directly previous to it.
Hope this helped.
Thank you.It helped.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.