Day 16 - Ensemble Techniques in ML - Max Voting
Ensemble Techniques in ML
Ensemble methods is a machine learning technique that combines several base models in order to produce one optimal predictive model.
Ensemble methods include building multiple models and combining them to achieve better outcomes. To put it another way, they integrate the conclusions drawn from various models to enhance overall performance. Generally speaking, ensemble methods produce more accurate results than a single model would.
Similar is true for a diverse set of models in comparison to single models. This diversification in Machine Learning is achieved by a technique called the Ensemble technique.
Simple Ensemble Techniques
- Max Voting
- Averaging
- Weighted Averaging
Max Voting
For classification problems, the max voting method is generally used. With this method, predictions are made for each data point using a variety of models. Each model's predictions are considered a "vote." The majority of the models' forecasts serve as the basis for the final prediction.
Comments
Post a Comment