public static interface AutoMLJobConfig.Builder extends SdkPojo, CopyableBuilder<AutoMLJobConfig.Builder,AutoMLJobConfig>
| Modifier and Type | Method and Description |
|---|---|
AutoMLJobConfig.Builder |
candidateGenerationConfig(AutoMLCandidateGenerationConfig candidateGenerationConfig)
The configuration for generating a candidate for an AutoML job (optional).
|
default AutoMLJobConfig.Builder |
candidateGenerationConfig(Consumer<AutoMLCandidateGenerationConfig.Builder> candidateGenerationConfig)
The configuration for generating a candidate for an AutoML job (optional).
|
AutoMLJobConfig.Builder |
completionCriteria(AutoMLJobCompletionCriteria completionCriteria)
How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.
|
default AutoMLJobConfig.Builder |
completionCriteria(Consumer<AutoMLJobCompletionCriteria.Builder> completionCriteria)
How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.
|
AutoMLJobConfig.Builder |
dataSplitConfig(AutoMLDataSplitConfig dataSplitConfig)
The configuration for splitting the input training dataset.
|
default AutoMLJobConfig.Builder |
dataSplitConfig(Consumer<AutoMLDataSplitConfig.Builder> dataSplitConfig)
The configuration for splitting the input training dataset.
|
AutoMLJobConfig.Builder |
mode(AutoMLMode mode)
The method that Autopilot uses to train the data.
|
AutoMLJobConfig.Builder |
mode(String mode)
The method that Autopilot uses to train the data.
|
AutoMLJobConfig.Builder |
securityConfig(AutoMLSecurityConfig securityConfig)
The security configuration for traffic encryption or Amazon VPC settings.
|
default AutoMLJobConfig.Builder |
securityConfig(Consumer<AutoMLSecurityConfig.Builder> securityConfig)
The security configuration for traffic encryption or Amazon VPC settings.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildAutoMLJobConfig.Builder completionCriteria(AutoMLJobCompletionCriteria completionCriteria)
How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.
completionCriteria - How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.default AutoMLJobConfig.Builder completionCriteria(Consumer<AutoMLJobCompletionCriteria.Builder> completionCriteria)
How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.
This is a convenience method that creates an instance of theAutoMLJobCompletionCriteria.Builder
avoiding the need to create one manually via AutoMLJobCompletionCriteria.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to completionCriteria(AutoMLJobCompletionCriteria).completionCriteria - a consumer that will call methods on AutoMLJobCompletionCriteria.BuildercompletionCriteria(AutoMLJobCompletionCriteria)AutoMLJobConfig.Builder securityConfig(AutoMLSecurityConfig securityConfig)
The security configuration for traffic encryption or Amazon VPC settings.
securityConfig - The security configuration for traffic encryption or Amazon VPC settings.default AutoMLJobConfig.Builder securityConfig(Consumer<AutoMLSecurityConfig.Builder> securityConfig)
The security configuration for traffic encryption or Amazon VPC settings.
This is a convenience method that creates an instance of theAutoMLSecurityConfig.Builder avoiding
the need to create one manually via AutoMLSecurityConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to securityConfig(AutoMLSecurityConfig).securityConfig - a consumer that will call methods on AutoMLSecurityConfig.BuildersecurityConfig(AutoMLSecurityConfig)AutoMLJobConfig.Builder dataSplitConfig(AutoMLDataSplitConfig dataSplitConfig)
The configuration for splitting the input training dataset.
Type: AutoMLDataSplitConfig
dataSplitConfig - The configuration for splitting the input training dataset.
Type: AutoMLDataSplitConfig
default AutoMLJobConfig.Builder dataSplitConfig(Consumer<AutoMLDataSplitConfig.Builder> dataSplitConfig)
The configuration for splitting the input training dataset.
Type: AutoMLDataSplitConfig
This is a convenience method that creates an instance of theAutoMLDataSplitConfig.Builder avoiding
the need to create one manually via AutoMLDataSplitConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to dataSplitConfig(AutoMLDataSplitConfig).dataSplitConfig - a consumer that will call methods on AutoMLDataSplitConfig.BuilderdataSplitConfig(AutoMLDataSplitConfig)AutoMLJobConfig.Builder candidateGenerationConfig(AutoMLCandidateGenerationConfig candidateGenerationConfig)
The configuration for generating a candidate for an AutoML job (optional).
candidateGenerationConfig - The configuration for generating a candidate for an AutoML job (optional).default AutoMLJobConfig.Builder candidateGenerationConfig(Consumer<AutoMLCandidateGenerationConfig.Builder> candidateGenerationConfig)
The configuration for generating a candidate for an AutoML job (optional).
This is a convenience method that creates an instance of theAutoMLCandidateGenerationConfig.Builder
avoiding the need to create one manually via AutoMLCandidateGenerationConfig.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to candidateGenerationConfig(AutoMLCandidateGenerationConfig).candidateGenerationConfig - a consumer that will call methods on AutoMLCandidateGenerationConfig.BuildercandidateGenerationConfig(AutoMLCandidateGenerationConfig)AutoMLJobConfig.Builder mode(String mode)
The method that Autopilot uses to train the data. You can either specify the mode manually or let Autopilot
choose for you based on the dataset size by selecting AUTO. In AUTO mode, Autopilot
chooses ENSEMBLING for datasets smaller than 100 MB, and HYPERPARAMETER_TUNING for
larger ones.
The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and regression
tasks directly from your dataset. This machine learning mode combines several base models to produce an
optimal predictive model. It then uses a stacking ensemble method to combine predictions from contributing
members. A multi-stack ensemble model can provide better performance over a single model by combining the
predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.
The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best version of
a model. HPO will automatically select an algorithm for the type of problem you want to solve. Then HPO finds
the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by HYPERPARAMETER_TUNING
mode.
mode - The method that Autopilot uses to train the data. You can either specify the mode manually or let
Autopilot choose for you based on the dataset size by selecting AUTO. In
AUTO mode, Autopilot chooses ENSEMBLING for datasets smaller than 100 MB,
and HYPERPARAMETER_TUNING for larger ones.
The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and
regression tasks directly from your dataset. This machine learning mode combines several base models
to produce an optimal predictive model. It then uses a stacking ensemble method to combine predictions
from contributing members. A multi-stack ensemble model can provide better performance over a single
model by combining the predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.
The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best
version of a model. HPO will automatically select an algorithm for the type of problem you want to
solve. Then HPO finds the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by
HYPERPARAMETER_TUNING mode.
AutoMLMode,
AutoMLModeAutoMLJobConfig.Builder mode(AutoMLMode mode)
The method that Autopilot uses to train the data. You can either specify the mode manually or let Autopilot
choose for you based on the dataset size by selecting AUTO. In AUTO mode, Autopilot
chooses ENSEMBLING for datasets smaller than 100 MB, and HYPERPARAMETER_TUNING for
larger ones.
The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and regression
tasks directly from your dataset. This machine learning mode combines several base models to produce an
optimal predictive model. It then uses a stacking ensemble method to combine predictions from contributing
members. A multi-stack ensemble model can provide better performance over a single model by combining the
predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.
The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best version of
a model. HPO will automatically select an algorithm for the type of problem you want to solve. Then HPO finds
the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by HYPERPARAMETER_TUNING
mode.
mode - The method that Autopilot uses to train the data. You can either specify the mode manually or let
Autopilot choose for you based on the dataset size by selecting AUTO. In
AUTO mode, Autopilot chooses ENSEMBLING for datasets smaller than 100 MB,
and HYPERPARAMETER_TUNING for larger ones.
The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and
regression tasks directly from your dataset. This machine learning mode combines several base models
to produce an optimal predictive model. It then uses a stacking ensemble method to combine predictions
from contributing members. A multi-stack ensemble model can provide better performance over a single
model by combining the predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.
The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best
version of a model. HPO will automatically select an algorithm for the type of problem you want to
solve. Then HPO finds the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by
HYPERPARAMETER_TUNING mode.
AutoMLMode,
AutoMLModeCopyright © 2022. All rights reserved.