Question 164:
You work as a machine learning specialist at a government agency that creates an image recognition program to help detect missing persons by analyzing surveillance videos. You have built and are now training a deep learning model for your image classification. You see that it is overfitting the training data during your model training: your training accuracy is 99%, and your testing accuracy is 75%. Why is your model overfitting the training data, and how can you address the issue?
Answer options:
A.Optimization stopped before model training bounced out of a local minimum. Address the issue by increasing the epoch number. B.The mini-batch size is too low. Address the issue by increasing the mini-batch size. C.The model is not generalized. Address the issue by increasing the dropout rate at the flatten layer. D.Optimization is trapped at a local minimum during training. Address the issue by increasing the learning rate.