Please enable JavaScript.
Coggle requires JavaScript to display documents.
ENSEMBLE TECHNIQUES
leverage the "low computational time"…
ENSEMBLE TECHNIQUES
- leverage the "low computational time" and compensate for the "high error rate of weak learners" by combining them to create a more computationally complex model with a lower error rate.
- Mode for classification
- Means for regression
-
-
Modelling
-
Cross Validation
Technique to evaluate a ML model end estimate its performance on unseen data in production
K Fold
- Divides data in k folds using random functions
- min k =2, max k = n (LOOCV)
- iterate every fold keeping a fold as testing and remaining as training
- retain in every loop evaluation score
- Average by dividing the sum Scores by k
- Analyze average score and dispersion to assess the likely performance of the model in production
-