Package elki.utilities.ensemble
Class EnsembleVotingMin
- java.lang.Object
-
- elki.utilities.ensemble.EnsembleVotingMin
-
- All Implemented Interfaces:
EnsembleVoting
public class EnsembleVotingMin extends java.lang.Object implements EnsembleVoting
Simple combination rule, by taking the minimum.- Since:
- 0.5.5
- Author:
- Erich Schubert
-
-
Constructor Summary
Constructors Constructor Description EnsembleVotingMin()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublecombine(double[] scores)Combine scores function.doublecombine(double[] scores, int count)Combine scores function.
-
-
-
Method Detail
-
combine
public double combine(double[] scores)
Description copied from interface:EnsembleVotingCombine scores function. Note: it is assumed that the scores are comparable.- Specified by:
combinein interfaceEnsembleVoting- Parameters:
scores- Scores to combine- Returns:
- combined score.
-
combine
public double combine(double[] scores, int count)Description copied from interface:EnsembleVotingCombine scores function. Note: it is assumed that the scores are comparable.- Specified by:
combinein interfaceEnsembleVoting- Parameters:
scores- Scores to combinecount- Number of entries to use.- Returns:
- combined score.
-
-