5

"Why would the application of boosting prevent underfitting?"

I read in some paper that applying boosting would prevent you from underfitting. Why is that?

Source:
https://www.cs.cornell.edu/courses/cs4780/2015fa/web/lecturenotes/lecturenote13.html

jennifer ruurs
  • 579
  • 2
  • 8

1 Answers1

1

It seems to me that the article is approaching it from the perspective of the base classifier. For example if the base classifier is a Decision Tree with a max depth of 1 (or any other severely limiting factors) it will underfit. In general, boosting adds a classifier of the same structure and train it on the data the previous classifier got incorrect which leads to a more general model; hence "less underfitting".

A_Arnold
  • 136
  • 1