Class: Aws::SageMaker::Types::AutoMLAlgorithmConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLAlgorithmConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The selection of algorithms trained on your dataset to generate the model candidates for an Autopilot job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_ml_algorithms ⇒ Array<String>
The selection of algorithms trained on your dataset to generate the model candidates for an Autopilot job.
Instance Attribute Details
#auto_ml_algorithms ⇒ Array<String>
The selection of algorithms trained on your dataset to generate the model candidates for an Autopilot job.
-
**For the tabular problem type
TabularJobConfig:**<note markdown=“1”> Selected algorithms must belong to the list corresponding to the training mode set in [AutoMLJobConfig.Mode] (
ENSEMBLINGorHYPERPARAMETER_TUNING). Choose a minimum of 1 algorithm.</note>-
In
ENSEMBLINGmode:-
“catboost”
-
“extra-trees”
-
“fastai”
-
“lightgbm”
-
“linear-learner”
-
“nn-torch”
-
“randomforest”
-
“xgboost”
-
-
In
HYPERPARAMETER_TUNINGmode:-
“linear-learner”
-
“mlp”
-
“xgboost”
-
-
-
**For the time-series forecasting problem type
TimeSeriesForecastingJobConfig:**-
Choose your algorithms from this list.
-
“cnn-qr”
-
“deepar”
-
“prophet”
-
“arima”
-
“npts”
-
“ets”
-
-
2066 2067 2068 2069 2070 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 2066 class AutoMLAlgorithmConfig < Struct.new( :auto_ml_algorithms) SENSITIVE = [] include Aws::Structure end |