InterviewSolution
Saved Bookmarks
| 1. |
What is Ensemble learning? |
|
Answer» ENSEMBLE learning is a method that combines multiple machine learning models to create more powerful models. There are many reasons for a model to be different. Few reasons are:
When working with the model’s training and testing DATA, we will experience an error. This error might be bias, variance, and irreducible error. Now the model should always have a BALANCE between bias and variance, which we call a bias-variance trade-off. This ensemble learning is a way to perform this trade-off. There are many ensemble techniques available but when aggregating multiple models there are two general methods:
|
|