// Copyright (C) 2010, 2011 Zeno Gantner, Chris Newell // // This file is part of MyMediaLite. // // MyMediaLite is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // MyMediaLite is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with MyMediaLite. If not, see <http://www.gnu.org/licenses/>. package org.mymedialite; import java.io.BufferedReader; import java.io.IOException; import java.io.PrintWriter; /** * Generic interface for simple recommenders. * @version 2.03 */ public interface IRecommender extends Cloneable { /** * Predict the rating or score for a given user-item combination. * @param userId the user ID * @param itemId the item ID * @return the predicted score/rating for the given user-item combination */ double predict(int userId, int itemId); /** * Check whether a useful prediction can be made for a given user-item combination. * @param userId the user ID * @param itemId the item ID * @return true if a useful prediction can be made, false otherwise */ boolean canPredict(int userId, int itemId); /** * Learn the model parameters of the recommender from the training data */ void train(); /** * Save the model parameters to a file * @param filename the file to write to */ void saveModel(String filename) throws IOException; /** * Save the model parameters to a PrintWriter * @param filename the PrintWriter to write to */ void saveModel(PrintWriter writer) throws IOException; /** * Get the model parameters from a file * @param filename the file to read from */ void loadModel(String filename) throws IOException; /** * Get the model parameters from a BufferedReader * @param filename the BufferedReader to read from */ void loadModel(BufferedReader reader) throws IOException; /** * Return a string representation of the recommender * @return the class name and all hyperparameters, separated by space characters. */ String toString(); }