Struct aws_sdk_personalize::operation::create_solution::builders::CreateSolutionInputBuilder
source · #[non_exhaustive]pub struct CreateSolutionInputBuilder { /* private fields */ }
Expand description
A builder for CreateSolutionInput
.
Implementations§
source§impl CreateSolutionInputBuilder
impl CreateSolutionInputBuilder
sourcepub fn perform_hpo(self, input: bool) -> Self
pub fn perform_hpo(self, input: bool) -> Self
Whether to perform hyperparameter optimization (HPO) on the specified or selected recipe. The default is false
.
When performing AutoML, this parameter is always true
and you should not set it to false
.
sourcepub fn set_perform_hpo(self, input: Option<bool>) -> Self
pub fn set_perform_hpo(self, input: Option<bool>) -> Self
Whether to perform hyperparameter optimization (HPO) on the specified or selected recipe. The default is false
.
When performing AutoML, this parameter is always true
and you should not set it to false
.
sourcepub fn perform_auto_ml(self, input: bool) -> Self
pub fn perform_auto_ml(self, input: bool) -> Self
Whether to perform automated machine learning (AutoML). The default is false
. For this case, you must specify recipeArn
.
When set to true
, Amazon Personalize analyzes your training data and selects the optimal USER_PERSONALIZATION recipe and hyperparameters. In this case, you must omit recipeArn
. Amazon Personalize determines the optimal recipe by running tests with different values for the hyperparameters. AutoML lengthens the training process as compared to selecting a specific recipe.
sourcepub fn set_perform_auto_ml(self, input: Option<bool>) -> Self
pub fn set_perform_auto_ml(self, input: Option<bool>) -> Self
Whether to perform automated machine learning (AutoML). The default is false
. For this case, you must specify recipeArn
.
When set to true
, Amazon Personalize analyzes your training data and selects the optimal USER_PERSONALIZATION recipe and hyperparameters. In this case, you must omit recipeArn
. Amazon Personalize determines the optimal recipe by running tests with different values for the hyperparameters. AutoML lengthens the training process as compared to selecting a specific recipe.
sourcepub fn recipe_arn(self, input: impl Into<String>) -> Self
pub fn recipe_arn(self, input: impl Into<String>) -> Self
The ARN of the recipe to use for model training. Only specified when performAutoML
is false.
sourcepub fn set_recipe_arn(self, input: Option<String>) -> Self
pub fn set_recipe_arn(self, input: Option<String>) -> Self
The ARN of the recipe to use for model training. Only specified when performAutoML
is false.
sourcepub fn dataset_group_arn(self, input: impl Into<String>) -> Self
pub fn dataset_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
sourcepub fn set_dataset_group_arn(self, input: Option<String>) -> Self
pub fn set_dataset_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
sourcepub fn event_type(self, input: impl Into<String>) -> Self
pub fn event_type(self, input: impl Into<String>) -> Self
When your have multiple event types (using an EVENT_TYPE
schema field), this parameter specifies which event type (for example, 'click' or 'like') is used for training the model.
If you do not provide an eventType
, Amazon Personalize will use all interactions for training with equal weight regardless of type.
sourcepub fn set_event_type(self, input: Option<String>) -> Self
pub fn set_event_type(self, input: Option<String>) -> Self
When your have multiple event types (using an EVENT_TYPE
schema field), this parameter specifies which event type (for example, 'click' or 'like') is used for training the model.
If you do not provide an eventType
, Amazon Personalize will use all interactions for training with equal weight regardless of type.
sourcepub fn solution_config(self, input: SolutionConfig) -> Self
pub fn solution_config(self, input: SolutionConfig) -> Self
The configuration to use with the solution. When performAutoML
is set to true, Amazon Personalize only evaluates the autoMLConfig
section of the solution configuration.
Amazon Personalize doesn't support configuring the hpoObjective
at this time.
sourcepub fn set_solution_config(self, input: Option<SolutionConfig>) -> Self
pub fn set_solution_config(self, input: Option<SolutionConfig>) -> Self
The configuration to use with the solution. When performAutoML
is set to true, Amazon Personalize only evaluates the autoMLConfig
section of the solution configuration.
Amazon Personalize doesn't support configuring the hpoObjective
at this time.
A list of tags to apply to the solution.
sourcepub fn build(self) -> Result<CreateSolutionInput, BuildError>
pub fn build(self) -> Result<CreateSolutionInput, BuildError>
Consumes the builder and constructs a CreateSolutionInput
.
Trait Implementations§
source§impl Clone for CreateSolutionInputBuilder
impl Clone for CreateSolutionInputBuilder
source§fn clone(&self) -> CreateSolutionInputBuilder
fn clone(&self) -> CreateSolutionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateSolutionInputBuilder
impl Debug for CreateSolutionInputBuilder
source§impl Default for CreateSolutionInputBuilder
impl Default for CreateSolutionInputBuilder
source§fn default() -> CreateSolutionInputBuilder
fn default() -> CreateSolutionInputBuilder
source§impl PartialEq<CreateSolutionInputBuilder> for CreateSolutionInputBuilder
impl PartialEq<CreateSolutionInputBuilder> for CreateSolutionInputBuilder
source§fn eq(&self, other: &CreateSolutionInputBuilder) -> bool
fn eq(&self, other: &CreateSolutionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.