0
0
ML Pythonml~5 mins

Why ensembles outperform single models in ML Python - Quick Recap

Choose your learning style9 modes available
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?
AImproved prediction accuracy
BFaster training time
CSimpler model design
DLess data needed
Which of these helps ensembles perform better?
AAll models making the same errors
BUsing only one model repeatedly
CModels being diverse and making different errors
DIgnoring model predictions
What does bagging do in ensemble learning?
ATrains models on different random samples of data
BTrains one model multiple times
CCombines models by multiplying predictions
DUses only the best model
How does boosting improve ensemble performance?
ABy training all models independently
BBy training models sequentially focusing on previous errors
CBy ignoring errors during training
DBy using only one model
What happens when you average predictions from multiple models?
ATraining time increases
BErrors increase
CModels become less diverse
DRandom errors tend to cancel out
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.