Class EnsembleVotingMean

  • All Implemented Interfaces:
    EnsembleVoting

    public class EnsembleVotingMean
    extends java.lang.Object
    implements EnsembleVoting
    Simple combination rule, by taking the mean
    Since:
    0.5.5
    Author:
    Erich Schubert
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double combine​(double[] scores)
      Combine scores function.
      double combine​(double[] scores, int count)
      Combine scores function.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EnsembleVotingMean

        public EnsembleVotingMean()
        Constructor.
    • Method Detail

      • combine

        public double combine​(double[] scores)
        Description copied from interface: EnsembleVoting
        Combine scores function. Note: it is assumed that the scores are comparable.
        Specified by:
        combine in interface EnsembleVoting
        Parameters:
        scores - Scores to combine
        Returns:
        combined score.
      • combine

        public double combine​(double[] scores,
                              int count)
        Description copied from interface: EnsembleVoting
        Combine scores function. Note: it is assumed that the scores are comparable.
        Specified by:
        combine in interface EnsembleVoting
        Parameters:
        scores - Scores to combine
        count - Number of entries to use.
        Returns:
        combined score.