🤖 Machine Learning / AI
Intermediate
What is an ensemble method?
Answer
Ensemble methods combine multiple models to produce a stronger predictor. Key techniques: Bagging (Bootstrap Aggregating) — train multiple models on bootstrap samples and average predictions (e.g., Random Forest); reduces variance. Boosting — train models sequentially, each correcting the errors of the previous (e.g., AdaBoost, Gradient Boosting, XGBoost); reduces bias and variance. Stacking — train multiple base models and a meta-model to combine their predictions. Ensembles consistently win data science competitions and are a reliable way to improve model performance.
More Machine Learning / AI Questions
View all →- Intermediate What is a convolutional neural network (CNN)?
- Intermediate What is a Recurrent Neural Network (RNN)?
- Intermediate What is an LSTM and how does it solve the vanishing gradient problem?
- Intermediate What is the attention mechanism in neural networks?
- Intermediate What is the Transformer architecture?