C# Class MyMediaLite.ItemRecommendation.Zero

Constant item recommender for use as experimental baseline. Always predicts a score of zero
This recommender can be used for debugging, e.g. to detect non-random orderings in item lists.
Inheritance: ItemRecommender
Afficher le fichier Open project: zenogantner/MML-KDD

Méthodes publiques

Méthode Description
LoadModel ( string filename ) : void
Predict ( int user_id, int item_id ) : double
SaveModel ( string filename ) : void
Train ( ) : void

Method Details

LoadModel() public méthode

public LoadModel ( string filename ) : void
filename string
Résultat void

Predict() public méthode

public Predict ( int user_id, int item_id ) : double
user_id int
item_id int
Résultat double

SaveModel() public méthode

public SaveModel ( string filename ) : void
filename string
Résultat void

Train() public méthode

public Train ( ) : void
Résultat void