Class: Aws::Personalize::Types::RecommenderConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::RecommenderConfig
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
The configuration details of the recommender.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#item_exploration_config ⇒ Hash<String,String>
Specifies the exploration configuration hyperparameters, including
explorationWeight
andexplorationItemAgeCutOff
, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. -
#min_recommendation_requests_per_second ⇒ Integer
Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support.
Instance Attribute Details
#item_exploration_config ⇒ Hash<String,String>
Specifies the exploration configuration hyperparameters, including
explorationWeight
and explorationItemAgeCutOff
, you want to use
to configure the amount of item exploration Amazon Personalize uses
when recommending items. Provide itemExplorationConfig
data only
if your recommenders generate personalized recommendations for a
user (not popular items or similar items).
4485 4486 4487 4488 4489 4490 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4485 class RecommenderConfig < Struct.new( :item_exploration_config, :min_recommendation_requests_per_second) SENSITIVE = [] include Aws::Structure end |
#min_recommendation_requests_per_second ⇒ Integer
Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support.
4485 4486 4487 4488 4489 4490 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4485 class RecommenderConfig < Struct.new( :item_exploration_config, :min_recommendation_requests_per_second) SENSITIVE = [] include Aws::Structure end |