Learning Goal - Regularization: Dropout
3 important questions on Learning Goal - Regularization: Dropout
What is dropout? Describe exactly what happens during a training step.
1. Randomly delete (drop) each hidden neuron with probability 0.5 (keep with 0.5)
2. Do a forward pass and backward pass through the reduced network (dropped neurons and their connections are temporarily gone)
3. Update weights only for the surviving neurons
4. Restore all neurons for the next mini-batch (a new random subset is dropped)
At test time: use the full network but halve all weights (to account for the fact that twice as many neurons are active compared to training).
Why does dropout work? Explain the ensemble interpretation.
Additionally, no neuron can rely on the guaranteed presence of specific other neurons — each neuron must learn robust, independent features that are useful across many network configurations.
Why are weights halved at test time in dropout?
The question on the page originate from the summary of the following study material:
- A unique study and practice tool
- Never study anything twice again
- Get the grades you hope for
- 100% sure, 100% understanding

















