Recall & Review
beginner
What is an ensemble in machine learning?
An ensemble is a group of multiple models combined to make better predictions than any single model alone.
Click to reveal answer
beginner
Why do ensembles usually perform better than single models?
Because they combine different models, reducing errors from individual models and improving overall accuracy.
Click to reveal answer
intermediate
How does averaging predictions in an ensemble help?
Averaging smooths out mistakes from individual models, so random errors cancel out, leading to more stable results.
Click to reveal answer
intermediate
What is the role of diversity among models in an ensemble?
Diversity means models make different errors, so when combined, their mistakes don’t overlap much, improving accuracy.
Click to reveal answer
beginner
Name two common types of ensemble methods.
Bagging (like Random Forest) and Boosting (like AdaBoost) are two popular ensemble methods.
Click to reveal answer
What is the main benefit of using an ensemble of models?
✗ Incorrect
Ensembles improve prediction accuracy by combining multiple models to reduce errors.
Which of these helps ensembles perform better?
✗ Incorrect
Diversity among models means their errors don’t overlap, so combining them improves accuracy.
What does bagging do in ensemble learning?
✗ Incorrect
Bagging trains models on different random subsets of data to create diverse models.
How does boosting improve ensemble performance?
✗ Incorrect
Boosting trains models one after another, each focusing on correcting errors from the previous model.
What happens when you average predictions from multiple models?
✗ Incorrect
Averaging predictions reduces random errors, leading to more stable and accurate results.
Explain in your own words why ensembles usually give better results than a single model.
Think about how mistakes from different models can balance each other out.
You got /4 concepts.
Describe the difference between bagging and boosting in ensemble methods.
Consider how each method trains models and focuses on errors.
You got /4 concepts.