All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ml.classifiers.utils.IVoter Maven / Gradle / Ivy

The newest version!
package ml.classifiers.utils;


public interface IVoter {

    /**
     * Add an item to be used in the voting process
     */
    void addItem(ItemType item, CriterionType criterionType);

    /**
     * Return the result of the vote where max is the
     * maximum best items to take into account
     */
    ResultType getResult(int max);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy