C# Class MyMediaLite.Ensemble.WeightedEnsemble

Combining several predictors with a weighted ensemble
This recommender does NOT support incremental updates.
Inheritance: Ensemble
Afficher le fichier Open project: zenogantner/MML-KDD

Méthodes publiques

Свойство Type Description
weights List

Protected Properties

Свойство Type Description
weight_sum double

Méthodes publiques

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

Method Details

LoadModel() public méthode

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

Predict() public méthode

public Predict ( int user_id, int item_id ) : double
user_id int
item_id int
Résultat double

SaveModel() public méthode

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

Train() public méthode

public Train ( ) : void
Résultat void

Property Details

weight_sum protected_oe property

Sum of the component weights
protected double weight_sum
Résultat double

weights public_oe property

List of component weights
public List weights
Résultat List