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

net.librec.increment.IIncrementalRatingRecommender Maven / Gradle / Ivy

The newest version!
package net.librec.increment;


import net.librec.common.LibrecException;

public interface  IIncrementalRatingRecommender{

    /***
     *  upodate rating
     */
    void updateRatings(TableMatrix newRatings) throws LibrecException;

    /**
     * plus rating
     */
    void addRatings(TableMatrix newRatings) throws LibrecException;

    /**
     * remove rating
     */
    void removeRatings(TableMatrix removeRatings) throws LibrecException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy