You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: recombee_api_client/api_requests/recommend_items_to_item.py
+9-1
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,12 @@ class RecommendItemsToItem(Request):
8
8
Recommends set of items that are somehow related to one given item, *X*. Typical scenario is when user *A* is viewing *X*. Then you may display items to the user that he might be also interested in. Recommend items to item request gives you Top-N such items, optionally taking the target user *A* into account.
9
9
10
10
It is also possible to use POST HTTP method (for example in case of very long ReQL filter) - query parameters then become body parameters.
11
+
12
+
The returned items are sorted by relevancy (first item being the most relevant).
Copy file name to clipboardexpand all lines: recombee_api_client/api_requests/recommend_items_to_user.py
+9-1
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,12 @@ class RecommendItemsToUser(Request):
8
8
Based on user's past interactions (purchases, ratings, etc.) with the items, recommends top-N items that are most likely to be of high value for a given user.
9
9
10
10
It is also possible to use POST HTTP method (for example in case of very long ReQL filter) - query parameters then become body parameters.
11
+
12
+
The returned items are sorted by relevancy (first item being the most relevant).
0 commit comments