A team is designing a deep learning pipeline for a computer vision task. They want to reduce overfitting. Which two techniques are specifically effective for this purpose? (Select TWO.)
Dropout randomly deactivates neurons, reducing overfitting by preventing reliance on specific features.
Why this answer
Options A and B are correct. Dropout randomly drops neurons during training, preventing co-adaptation. L2 regularization adds a penalty on weights, discouraging complexity.
Option C, increasing learning rate, can hinder convergence. Option D, adding more layers, typically increases overfitting. Option E, smaller batch size, can have a regularizing effect but is not as direct or commonly cited as the primary techniques.