ml.classifiers.utils.IVoter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstat Show documentation
Show all versions of jstat Show documentation
Java Library for Statistical Analysis.
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);
}