Login to unlock
Deep Learning · Phase 4: Regularization & Generalization · Dropout & Batch Normalization

Dropout & Batch Normalization — Checkpoint Quiz

Checkpoint quiz 3 questions
Back to course

Check your understanding of this module before moving on.

?

Checkpoint quiz 3 questions

A quick check on this module's key ideas before you move on
0/3
Question 01

How does dropout act as a regularizer during training?

A is correct. By randomly dropping different neurons on every forward pass, dropout forces the network to spread useful information across many neurons rather than depending on a small, fragile set of them, which improves generalization.
Question 02

Why is dropout turned off (or scaled appropriately) at inference time?

A is correct. During training, dropout creates an ensemble-like effect over random sub-networks. At test time you want a single, stable, deterministic prediction using the full network, so dropout is disabled and outputs are rescaled to account for the difference.
Question 03

What problem does batch normalization primarily address?

A is correct. As weights update during training, the distribution of activations entering each layer keeps shifting, forcing later layers to constantly readapt. Batch normalization re-centers and rescales activations per batch, stabilizing this and generally allowing faster, more stable training.