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: lib/recombee_api_client/api/item_based_recommendation.rb
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ module RecombeeApiClient
7
7
require_relative'../errors'
8
8
9
9
##
10
+
#Deprecated since version 2.0.0. Use RecommendItemsToItem request instead.
11
+
#
10
12
#Recommends set of items that are somehow related to one given item, *X*. Typical scenario for using item-based recommendation is when user *A* is viewing *X*. Then you may display items to the user that he might be also interested in. Item-recommendation request gives you Top-N such items, optionally taking the target user *A* into account.
11
13
#
12
14
# It is also possible to use POST HTTP method (for example in case of very long ReQL filter) - query parameters then become body parameters.
Copy file name to clipboardExpand all lines: lib/recombee_api_client/api/recommend_items_to_item.rb
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,6 @@ module RecombeeApiClient
7
7
require_relative'../errors'
8
8
9
9
##
10
-
#This feature is currently in beta.
11
-
#
12
10
#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.
13
11
#
14
12
#It is also possible to use POST HTTP method (for example in case of very long ReQL filter) - query parameters then become body parameters.
@@ -34,8 +32,8 @@ class RecommendItemsToItem < ApiRequest
34
32
#If you insist on not specifying the user, pass `null`
35
33
#(`None`, `nil`, `NULL` etc. depending on language) to *targetUserId*.
36
34
#Do not create some special dummy user for getting recommendations,
37
-
#as it could cause mislead the recommendation models,
38
-
#leading to wrong recommendations.
35
+
#as it could mislead the recommendation models,
36
+
#and result in wrong recommendations.
39
37
#
40
38
#For anonymous/unregistered users it is possible to use for example their session ID.
41
39
#
@@ -53,7 +51,7 @@ class RecommendItemsToItem < ApiRequest
Copy file name to clipboardExpand all lines: lib/recombee_api_client/api/recommend_items_to_user.rb
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,6 @@ module RecombeeApiClient
7
7
require_relative'../errors'
8
8
9
9
##
10
-
#This feature is currently in beta.
11
-
#
12
10
#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.
13
11
#
14
12
#It is also possible to use POST HTTP method (for example in case of very long ReQL filter) - query parameters then become body parameters.
@@ -33,7 +31,7 @@ class RecommendItemsToUser < ApiRequest
Copy file name to clipboardExpand all lines: lib/recombee_api_client/api/user_based_recommendation.rb
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ module RecombeeApiClient
7
7
require_relative'../errors'
8
8
9
9
##
10
+
#Deprecated since version 2.0.0. Use RecommendItemsToUser request instead.
11
+
#
10
12
#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.
11
13
#
12
14
#It is also possible to use POST HTTP method (for example in case of very long ReQL filter) - query parameters then become body parameters.
0 commit comments