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