Machine Learning Intermediate
ensemble
A collection of models trained independently whose predictions are averaged or aggregated.
Plain English Explanation
A collection of models trained independently whose predictions are averaged or aggregated. In many cases, an ensemble produces better predictions than a single model. For example, a random forest is an ensemble built from multiple decision trees. Note that not all decision forests are ensembles. See Random Forest in Machine Learning Crash Course for more information.
How is it used?
Practitioners refer to ensemble when building, training, or evaluating machine learning systems. It appears in research papers, product documentation, and technical discussions about AI capabilities and limitations.