Class: Aws::Personalize::Types::BatchInferenceJobConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::BatchInferenceJobConfig
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Note:
When making an API call, you may pass BatchInferenceJobConfig data as a hash:
{
item_exploration_config: {
"ParameterName" => "ParameterValue",
},
}
The configuration details of a batch inference job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#item_exploration_config ⇒ Hash<String,String>
A string to string map specifying the exploration configuration hyperparameters, including
explorationWeight
andexplorationItemAgeCutOff
, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items.
Instance Attribute Details
#item_exploration_config ⇒ Hash<String,String>
A string to string map specifying 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.
See User-Personalization.
264 265 266 267 268 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 264 class BatchInferenceJobConfig < Struct.new( :item_exploration_config) SENSITIVE = [] include Aws::Structure end |