Method | Description | |
---|---|---|
ComputeFit ( ) : double | ||
FactorWiseMatrixFactorization ( ) : System |
Default constructor
|
|
Iterate ( ) : void | ||
LoadModel ( string filename ) : void | ||
Predict ( int user_id, int item_id ) : double |
Predict the rating of a given user for a given item If the user or the item are not known to the recommender, the global effects prediction is returned. To avoid this behavior for unknown entities, use CanPredict() to check before. |
|
SaveModel ( string filename ) : void | ||
ToString ( ) : string | ||
Train ( ) : void |
public FactorWiseMatrixFactorization ( ) : System | ||
return | System |
public Predict ( int user_id, int item_id ) : double | ||
user_id | int | the user ID |
item_id | int | the item ID |
return | double |