C# 클래스 MyMediaLite.Ensemble.WeightedEnsemble

Combining several predictors with a weighted ensemble
This recommender does NOT support incremental updates.
상속: Ensemble
파일 보기 프로젝트 열기: zenogantner/MML-KDD

공개 프로퍼티들

프로퍼티 타입 설명
weights List

보호된 프로퍼티들

프로퍼티 타입 설명
weight_sum double

공개 메소드들

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

메소드 상세

LoadModel() 공개 메소드

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

Predict() 공개 메소드

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

SaveModel() 공개 메소드

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

Train() 공개 메소드

public Train ( ) : void
리턴 void

프로퍼티 상세

weight_sum 보호되어 있는 프로퍼티

Sum of the component weights
protected double weight_sum
리턴 double

weights 공개적으로 프로퍼티

List of component weights
public List weights
리턴 List