Méthode | Description | |
---|---|---|
CofiRecommenderModel ( ) : System |
Initializes a new Collaborative Filtering recommender model.
|
|
NewEntity ( object item ) : void |
Inserts a new learning target entity feature item into the model, i.e. insert a new Movie into the existing model.
|
|
NewReference ( object item ) : void |
Inserts a new source / reference feature (i.e. User rating items) into the existing model.
|
|
Predict ( int referenceId ) : |
Predicts all the recommendations of the Items for the supplied reference, i.e. a user.
|
|
Predict ( |
Not implemnted.
|
|
PredictRelated ( int itemId, int count = 5, ItemType itemType = ItemType.References ) : |
Predicts the related items, given the item index and the type (either References or Entities).
|
public NewEntity ( object item ) : void | ||
item | object | A source entity object. |
Résultat | void |
public NewReference ( object item ) : void | ||
item | object | A source feature object. |
Résultat | void |
public Predict ( int referenceId ) : |
||
referenceId | int | Reference index to use for generating predictions. |
Résultat |
public Predict ( |
||
y | ||
Résultat | double |
public PredictRelated ( int itemId, int count = 5, ItemType itemType = ItemType.References ) : |
||
itemId | int | The item index in the corresponding feature map column. |
count | int | count |
itemType | ItemType | Type of item to return related items (i.e. References = user ratings OR Entities = books or movies) |
Résultat |