C# Class MyMediaLite.ItemRecommendation.MostPopular

Most-popular item recommender
Items are weighted by how often they have been seen in the past. This method is not personalized. This recommender supports incremental updates.
Inheritance: ItemRecommender
Afficher le fichier Open project: zenogantner/MML-KDD Class Usage Examples

Protected Properties

Свойство Type Description
view_count IList

Méthodes publiques

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

Méthodes protégées

Méthode Description
AddItem ( int item_id ) : void

Method Details

AddFeedback() public méthode

public AddFeedback ( int user_id, int item_id ) : void
user_id int
item_id int
Résultat void

AddItem() protected méthode

protected AddItem ( int item_id ) : void
item_id int
Résultat void

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

RemoveFeedback() public méthode

public RemoveFeedback ( int user_id, int item_id ) : void
user_id int
item_id int
Résultat void

RemoveItem() public méthode

public RemoveItem ( int item_id ) : void
item_id int
Résultat void

RemoveUser() public méthode

public RemoveUser ( int user_id ) : void
user_id int
Résultat void

SaveModel() public méthode

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

Train() public méthode

public Train ( ) : void
Résultat void

Property Details

view_count protected_oe property

View count
protected IList view_count
Résultat IList