You've developed a Polynomial Regression model with a high-degree polynomial, and it's performing exceptionally well on the training data but poorly on the test data. What might be the issue, and how would you address it?

  • Add more features
  • Increase the degree
  • Reduce the degree or apply regularization
  • Use a different algorithm entirely
The issue likely is overfitting due to the high-degree polynomial. Reducing the degree or applying regularization techniques like Ridge or Lasso can help to reduce the model's complexity and improve generalization to unseen data.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *