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
Exibir arquivo Open project: zenogantner/MML-KDD

Public Methods

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

Method Details

LoadModel() public method

public LoadModel ( string filename ) : void
filename string
return void

Predict() public method

public Predict ( int user_id, int item_id ) : double
user_id int
item_id int
return double

SaveModel() public method

public SaveModel ( string filename ) : void
filename string
return void

Train() public method

public Train ( ) : void
return void