#[non_exhaustive]pub struct CreateSolutionInput { /* private fields */ }
Implementations§
source§impl CreateSolutionInput
impl CreateSolutionInput
sourcepub fn perform_hpo(&self) -> Option<bool>
pub fn perform_hpo(&self) -> Option<bool>
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) -> bool
pub fn perform_auto_ml(&self) -> bool
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) -> Option<&str>
pub fn recipe_arn(&self) -> Option<&str>
The ARN of the recipe to use for model training. Only specified when performAutoML
is false.
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
sourcepub fn event_type(&self) -> Option<&str>
pub fn event_type(&self) -> Option<&str>
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) -> Option<&SolutionConfig>
pub fn solution_config(&self) -> Option<&SolutionConfig>
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.
source§impl CreateSolutionInput
impl CreateSolutionInput
sourcepub fn builder() -> CreateSolutionInputBuilder
pub fn builder() -> CreateSolutionInputBuilder
Creates a new builder-style object to manufacture CreateSolutionInput
.
source§impl CreateSolutionInput
impl CreateSolutionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateSolution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateSolution
>
Trait Implementations§
source§impl Clone for CreateSolutionInput
impl Clone for CreateSolutionInput
source§fn clone(&self) -> CreateSolutionInput
fn clone(&self) -> CreateSolutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateSolutionInput
impl Debug for CreateSolutionInput
source§impl PartialEq<CreateSolutionInput> for CreateSolutionInput
impl PartialEq<CreateSolutionInput> for CreateSolutionInput
source§fn eq(&self, other: &CreateSolutionInput) -> bool
fn eq(&self, other: &CreateSolutionInput) -> bool
self
and other
values to be equal, and is used
by ==
.