The 60-second answer
During training, dropout randomly zeros activations to reduce co-adaptation and acts as regularization. With inverted dropout, surviving activations are scaled during training so inference is deterministic without extra rescaling.
Build the answer in this order
During training, dropout randomly zeros activations to reduce co-adaptation and acts as regularization.
With inverted dropout, surviving activations are scaled during training so inference is deterministic without extra rescaling.
Tune dropout against the train-validation gap; excessive dropout increases bias and slows optimization.
Switch the model to evaluation mode at inference and test deterministic behavior.
A useful interview mental model
This is the shape of a strong answer—not a script to memorize.
Senior-level signal
- Discuss interactions with normalization and why modern Transformer configurations may use dropout differently from older MLP/CNN recipes.
- Treat train/eval-mode mistakes as correctness bugs because they silently shift output distributions.
What the interviewer is really testing
Likely follow-up questions
Common weak-answer patterns
- Reciting a definition without mechanism or assumptions.
- Claiming one technique is always better without a data regime.
- Stopping before failure modes, validation, or deployment implications.