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
/** Allows specifying which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list. */
2199
2199
includedProperties?: string[];
2200
-
/** Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended items based on the values of their attributes. */
2200
+
/** Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended users based on the values of their attributes. */
2201
2201
filter?: string;
2202
-
/** Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some items based on the values of their attributes. */
2202
+
/** Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some users based on the values of their attributes. */
2203
2203
booster?: string;
2204
2204
/** Logic specifies the particular behavior of the recommendation models. You can pick tailored logic for your domain and use case. */
/** Allows specifying which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list. */
2281
2281
includedProperties?: string[];
2282
-
/** Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended items based on the values of their attributes. */
2282
+
/** Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended users based on the values of their attributes. */
2283
2283
filter?: string;
2284
-
/** Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some items based on the values of their attributes. */
2284
+
/** Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some users based on the values of their attributes. */
2285
2285
booster?: string;
2286
2286
/** Logic specifies the particular behavior of the recommendation models. You can pick tailored logic for your domain and use case. */
2287
2287
logic?: string|object;
2288
-
/** **Expert option:** Real number from [0.0, 1.0], which determines how mutually dissimilar the recommended items should be. The default value is 0.0, i.e., no diversification. Value 1.0 means maximal diversification. */
2288
+
/** **Expert option:** Real number from [0.0, 1.0], which determines how mutually dissimilar the recommended users should be. The default value is 0.0, i.e., no diversification. Value 1.0 means maximal diversification. */
Copy file name to clipboardExpand all lines: lib/requests/recommend-users-to-item.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ class RecommendUsersToItem extends rqs.Request {
15
15
/**
16
16
* Construct the request
17
17
* @param {string} itemId - ID of the item for which the recommendations are to be generated.
18
-
* @param {number} count - Number of items to be recommended (N for the top-N recommendation).
18
+
* @param {number} count - Number of users to be recommended (N for the top-N recommendation).
19
19
* @param {Object} optional - Optional parameters given as an object with structure name of the parameter: value
20
20
* - Allowed parameters:
21
21
* - *scenario*
@@ -80,11 +80,11 @@ class RecommendUsersToItem extends rqs.Request {
80
80
* ```
81
81
* - *filter*
82
82
* - Type: string
83
-
* - Description: Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended items based on the values of their attributes.
83
+
* - Description: Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended users based on the values of their attributes.
84
84
* Filters can also be assigned to a [scenario](https://docs.recombee.com/scenarios) in the [Admin UI](https://admin.recombee.com).
85
85
* - *booster*
86
86
* - Type: string
87
-
* - Description: Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some items based on the values of their attributes.
87
+
* - Description: Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some users based on the values of their attributes.
88
88
* Boosters can also be assigned to a [scenario](https://docs.recombee.com/scenarios) in the [Admin UI](https://admin.recombee.com).
89
89
* - *logic*
90
90
* - Type: string | object
@@ -94,7 +94,7 @@ class RecommendUsersToItem extends rqs.Request {
94
94
* Logic can also be set to a [scenario](https://docs.recombee.com/scenarios) in the [Admin UI](https://admin.recombee.com).
95
95
* - *diversity*
96
96
* - Type: number
97
-
* - Description: **Expert option:** Real number from [0.0, 1.0], which determines how mutually dissimilar the recommended items should be. The default value is 0.0, i.e., no diversification. Value 1.0 means maximal diversification.
97
+
* - Description: **Expert option:** Real number from [0.0, 1.0], which determines how mutually dissimilar the recommended users should be. The default value is 0.0, i.e., no diversification. Value 1.0 means maximal diversification.
Copy file name to clipboardExpand all lines: lib/requests/recommend-users-to-user.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -80,11 +80,11 @@ class RecommendUsersToUser extends rqs.Request {
80
80
* ```
81
81
* - *filter*
82
82
* - Type: string
83
-
* - Description: Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended items based on the values of their attributes.
83
+
* - Description: Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter recommended users based on the values of their attributes.
84
84
* Filters can also be assigned to a [scenario](https://docs.recombee.com/scenarios) in the [Admin UI](https://admin.recombee.com).
85
85
* - *booster*
86
86
* - Type: string
87
-
* - Description: Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some items based on the values of their attributes.
87
+
* - Description: Number-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to boost the recommendation rate of some users based on the values of their attributes.
88
88
* Boosters can also be assigned to a [scenario](https://docs.recombee.com/scenarios) in the [Admin UI](https://admin.recombee.com).
0 commit comments