rortega.cf4j-recsys.1.1.0.source-code.TestItemsPartible Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cf4j-recsys Show documentation
Show all versions of cf4j-recsys Show documentation
A Java's Collaborative Filtering library to carry out experiments in research of Collaborative Filtering based Recommender Systems. The library has been designed from researchers to researchers.
The newest version!
package cf4j;
/**
* This interface must be implemented if you want to process a Partible over
* the test items set.
* @see Partible
* @author Fernando Ortega
*/
public interface TestItemsPartible extends Partible {
/**
* Is executed once for each test item.
* @param testItemIndex Index of the test item.
*/
public void run (int testItemIndex);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy