Struct aws_sdk_personalize::input::CreateSolutionInput
source · [−]#[non_exhaustive]pub struct CreateSolutionInput {
pub name: Option<String>,
pub perform_hpo: Option<bool>,
pub perform_auto_ml: bool,
pub recipe_arn: Option<String>,
pub dataset_group_arn: Option<String>,
pub event_type: Option<String>,
pub solution_config: Option<SolutionConfig>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name for the solution.
perform_hpo: 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.
perform_auto_ml: boolWhether 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.
recipe_arn: Option<String>The ARN of the recipe to use for model training. Only specified when performAutoML is false.
dataset_group_arn: Option<String>The Amazon Resource Name (ARN) of the dataset group that provides the training data.
event_type: Option<String>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.
solution_config: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSolution>
Creates a new builder-style object to manufacture CreateSolutionInput
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.
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.
The ARN of the recipe to use for model training. Only specified when performAutoML is false.
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
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.
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.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CreateSolutionInput
impl Send for CreateSolutionInput
impl Sync for CreateSolutionInput
impl Unpin for CreateSolutionInput
impl UnwindSafe for CreateSolutionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more