__call__(self,
clfs,
dataset)
(Call operator)
| source code
|
Actuall callable - perform voting
Extended functionality which might not be needed actually:
Since BinaryClassifier might return a list of possible
predictions (not just a single one), we should consider all of those
MaximalVote doesn't care about dataset itself
- Parameters:
clfs - List of classifiers to combine. Has to be classifiers (not
pure predictions), since combiner might use some other
state variables (value's) instead of pure prediction's
- Overrides:
PredictionsCombiner.__call__
|