rortega.cf4j-recsys.1.1.0.source-code.ItemsPartible 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 items set.
* @see Partible
* @author Fernando Ortega
*/
public interface ItemsPartible extends Partible {
/**
* Is executed once for each item.
* @param itemIndex Index of the item.
*/
public void run (int itemIndex);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy