C# Class MyMediaLite.Ensemble.WeightedEnsemble

Combining several predictors with a weighted ensemble
This recommender does NOT support incremental updates.
Inheritance: Ensemble
显示文件 Open project: zenogantner/MML-KDD

Public Properties

Property Type Description
weights List

Protected Properties

Property Type Description
weight_sum double

Public Methods

Method Description
LoadModel ( string file ) : void
Predict ( int user_id, int item_id ) : double
SaveModel ( string file ) : void
Train ( ) : void

Method Details

LoadModel() public method

public LoadModel ( string file ) : void
file string
return void

Predict() public method

public Predict ( int user_id, int item_id ) : double
user_id int
item_id int
return double

SaveModel() public method

public SaveModel ( string file ) : void
file string
return void

Train() public method

public Train ( ) : void
return void

Property Details

weight_sum protected_oe property

Sum of the component weights
protected double weight_sum
return double

weights public_oe property

List of component weights
public List weights
return List