
Answer-first summary for fast verification
Answer: Increase the size of the training dataset, and decrease the number of input features.
The correct answer is B. To address overfitting, you should decrease the number of input features to prevent the model from learning noise in the data. Additionally, increasing the size of the training dataset provides more examples for the model to learn from, leading to better generalization and improved accuracy on new data.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You are working on enhancing an ecommerce platform by developing a deep learning model to predict the likelihood of a customer making a purchase. After evaluating the performance of your model using both the original training data and a new set of test data, you observe that your model suffers from overfitting. This means the model performs well on the training data but poorly on the test data, indicating that it does not generalize well to unseen data. Your objective is to improve the model's accuracy for new, unseen data. What steps should you take to address this issue?
A
Increase the size of the training dataset, and increase the number of input features.
B
Increase the size of the training dataset, and decrease the number of input features.
C
Reduce the size of the training dataset, and increase the number of input features.
D
Reduce the size of the training dataset, and decrease the number of input features.
No comments yet.