C# Class MyMediaLite.RatingPrediction.KNN

Base class for rating predictors that use some kind of kNN
The method is described in section 2.2 of Yehuda Koren: Factor in the Neighbors: Scalable and Accurate Collaborative Filtering, Transactions on Knowledge Discovery from Data (TKDD), 2009. ItemRecommendation.KNN
Inheritance: UserItemBaseline
Afficher le fichier Open project: zenogantner/MML-KDD

Protected Properties

Свойство Type Description
correlation CorrelationMatrix

Méthodes publiques

Méthode Description
KNN ( ) : System

Create a new KNN recommender

LoadModel ( string filename ) : void
SaveModel ( string filename ) : void

Method Details

KNN() public méthode

Create a new KNN recommender
public KNN ( ) : System
Résultat System

LoadModel() public méthode

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

SaveModel() public méthode

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

Property Details

correlation protected_oe property

Correlation matrix over some kind of entity
protected CorrelationMatrix correlation
Résultat CorrelationMatrix