[SOLVED] Vote operator. How it works?

Everything is done in X-Validation and testing subprocess contains Apply Model -> Performance(typical approach).
I've read description of Vote Operator and it says that it uses majority vote to take prediction. My process is classification problem(only 2 classes: true, false).
I am wondering how vote exactly works.
1. Does it take for each record only predicted class from SVMs outputs and count how many times it was true and false, and take the largest one(ex. 4 SVM predicted true class for the record so vote also predicts true)?
or
2. It uses some kind of probability approach. I mean that SVM classifiers gives an information about how likely record is true and how likely it is false and vote learns on that predictions.
If first is correct how can I perform second approach ?
Answers
-
RapidMiner uses approach 1 (it makes the different algorithms vote and assigns the observation to the class that got more votes).
If you want to average the probabilities you can use the Vote Operator available from Weka. With this one you have the choice (simple voting or averaging probabilities)1 -
Ok, thx for reply.0
-
Hi , how to know which algo that the Vote method choose inside RM ? Thanks.
0 -
Hello - this is a very old thread. Have you looked at the documentation for Vote (https://docs.rapidminer.com/latest/studio/operators/modeling/predictive/ensembles/vote.html) and the tutorial?
Scott
0 -
Yes, I have read the documentation and also already implemented it. No issues. But the Vote techniques seems kind like a black box technique which only produced the output without knowing which one is having the maximum accuracy. Btw, I'm using the w-Vote which is from Weka.
The accuracy result above is 86.63% which is good, but the result coming from which classifier? I'm set as "MAX" in the W-Vote which it should return the maximum accuracy among the selected classifier.
0 -
Hi,
nono. it takes the classifier with the highest confidence. Basically you have 5 (or k) models producing 5 (or k) confidences.
Vote takes the 5 and merges them to one. usualy via an average. you used the maximum, which can also work.
Best,
Martin
1 -
Yes, i know it takes the highest , but how to check which classifier it choose using RapidMiner ? I really need that for my research .
0