C# Class MyMediaLite.ItemRecommendation.AttributeCounter

Simple recommender that counts attributes
Inheritance: ItemRecommender, IKDDCupRecommender
Afficher le fichier Open project: zenogantner/MML-KDD

Méthodes publiques

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

Méthodes protégées

Méthode Description
GetAttributes ( int item_id ) : IList

Get attributes for an item

Method Details

GetAttributes() protected abstract méthode

Get attributes for an item
protected abstract GetAttributes ( int item_id ) : IList
item_id int the item ID
Résultat IList

InitModel() public méthode

public InitModel ( ) : void
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

SaveModel() public méthode

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

Train() public méthode

public Train ( ) : void
Résultat void