C# 클래스 MyMediaLite.ItemRecommendation.AttributeCounter

Simple recommender that counts attributes
상속: ItemRecommender, IKDDCupRecommender
파일 보기 프로젝트 열기: zenogantner/MML-KDD

공개 메소드들

메소드 설명
InitModel ( ) : void
LoadModel ( string filename ) : void
Predict ( int user_id, int item_id ) : double
SaveModel ( string filename ) : void
Train ( ) : void

보호된 메소드들

메소드 설명
GetAttributes ( int item_id ) : IList

Get attributes for an item

메소드 상세

GetAttributes() 보호된 추상적인 메소드

Get attributes for an item
protected abstract GetAttributes ( int item_id ) : IList
item_id int the item ID
리턴 IList

InitModel() 공개 메소드

public InitModel ( ) : void
리턴 void

LoadModel() 공개 메소드

public LoadModel ( string filename ) : void
filename string
리턴 void

Predict() 공개 메소드

public Predict ( int user_id, int item_id ) : double
user_id int
item_id int
리턴 double

SaveModel() 공개 메소드

public SaveModel ( string filename ) : void
filename string
리턴 void

Train() 공개 메소드

public Train ( ) : void
리턴 void