Voting Classifier
In voting classifier we select some models.Suppose you select Logistic Regression,SVM,KNN
Always remember no.of models you select will always odd because we use majority count
Suppose a new data point cames and Outputs are
1.Logististic Regression->1
2.SVM->0
3.KNN->1
Here you can see no.of model said 1(2)>no.of model said 0(1)-.So ours model says 1
Here you can also use this logic in multiclass classification
Comments
Post a Comment