Simple Ensemble Learning Examples
Simple Ensemble Learning Examples
Concept: Train many models separately on different random samples of the data, then take a vote.
Example:
- Data: [A, A, B, B, A]
- Sample 1: [A, A, B]
- Sample 2: [B, A, A]
- Sample 3: [A, B, B]
- Model 1: A
- Model 2: A
- Model 3: B
Concept: Train models one by one, each learning from the mistakes of the previous one.
Example:
- Data: [A, A, B, B]
Concept: Use many different models and combine their outputs using another model.
Example:
- Tree: A
- KNN: B
- Naive Bayes: A
Final Output: A