Interface RatingPredictor

  • All Superinterfaces:
    Serializable
    All Known Implementing Classes:
    BaselinePredictor, BRISMFPredictor

    public interface RatingPredictor
    extends Serializable
    Rating predicting algorithm. The core of any recommender system is its rating prediction algorithm. Its purpose is to estimate the rating (a numeric score) that a certain user would give to a certain item, based on previous ratings given of the user and the item.
    • Method Detail

      • predictRating

        double predictRating​(int userID,
                             int itemID)
      • train

        void train()