C# 클래스 MyMediaLite.Ensemble.Ensemble

Abtract class for combining several prediction methods
상속: IRecommender
파일 보기 프로젝트 열기: zenogantner/MML-KDD

공개 프로퍼티들

프로퍼티 타입 설명
recommenders List

공개 메소드들

메소드 설명
CanPredict ( int user_id, int item_id ) : bool
LoadModel ( string file ) : void
Predict ( int user_id, int item_id ) : double
SaveModel ( string file ) : void
Train ( ) : void

메소드 상세

CanPredict() 공개 메소드

public CanPredict ( int user_id, int item_id ) : bool
user_id int
item_id int
리턴 bool

LoadModel() 공개 추상적인 메소드

public abstract LoadModel ( string file ) : void
file string
리턴 void

Predict() 공개 추상적인 메소드

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

SaveModel() 공개 추상적인 메소드

public abstract SaveModel ( string file ) : void
file string
리턴 void

Train() 공개 메소드

public Train ( ) : void
리턴 void

프로퍼티 상세

recommenders 공개적으로 프로퍼티

list of recommenders
public List recommenders
리턴 List