AWS Certified Machine Learning Engineer – Associate (MLA-C01) — Question 23

An ML engineer is training a simple neural network model. The ML engineer tracks the performance of the model over time on a validation dataset. The model's performance improves substantially at first and then degrades after a specific number of epochs.
Which solutions will mitigate this problem? (Choose two.)

Answer options

Correct answer: A, B

Explanation

Enabling early stopping allows the training process to halt when performance on the validation set starts to decline, preventing overfitting. Increasing dropout helps reduce overfitting by randomly dropping units during training, which can improve generalization. The other options, such as adding layers or neurons, may worsen overfitting, while addressing model bias is important but not directly related to the immediate issue of performance degradation.