Class: Aws::SageMaker::Types::HyperParameterTrainingJobDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::HyperParameterTrainingJobDefinition
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
When making an API call, you may pass HyperParameterTrainingJobDefinition data as a hash:
{
definition_name: "HyperParameterTrainingJobDefinitionName",
tuning_objective: {
type: "Maximize", # required, accepts Maximize, Minimize
metric_name: "MetricName", # required
},
hyper_parameter_ranges: {
integer_parameter_ranges: [
{
name: "ParameterKey", # required
min_value: "ParameterValue", # required
max_value: "ParameterValue", # required
scaling_type: "Auto", # accepts Auto, Linear, Logarithmic, ReverseLogarithmic
},
],
continuous_parameter_ranges: [
{
name: "ParameterKey", # required
min_value: "ParameterValue", # required
max_value: "ParameterValue", # required
scaling_type: "Auto", # accepts Auto, Linear, Logarithmic, ReverseLogarithmic
},
],
categorical_parameter_ranges: [
{
name: "ParameterKey", # required
values: ["ParameterValue"], # required
},
],
},
static_hyper_parameters: {
"ParameterKey" => "ParameterValue",
},
algorithm_specification: { # required
training_image: "AlgorithmImage",
training_input_mode: "Pipe", # required, accepts Pipe, File
algorithm_name: "ArnOrName",
metric_definitions: [
{
name: "MetricName", # required
regex: "MetricRegex", # required
},
],
},
role_arn: "RoleArn", # required
input_data_config: [
{
channel_name: "ChannelName", # required
data_source: { # required
s3_data_source: {
s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix, AugmentedManifestFile
s3_uri: "S3Uri", # required
s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
attribute_names: ["AttributeName"],
},
file_system_data_source: {
file_system_id: "FileSystemId", # required
file_system_access_mode: "rw", # required, accepts rw, ro
file_system_type: "EFS", # required, accepts EFS, FSxLustre
directory_path: "DirectoryPath", # required
},
},
content_type: "ContentType",
compression_type: "None", # accepts None, Gzip
record_wrapper_type: "None", # accepts None, RecordIO
input_mode: "Pipe", # accepts Pipe, File
shuffle_config: {
seed: 1, # required
},
},
],
vpc_config: {
security_group_ids: ["SecurityGroupId"], # required
subnets: ["SubnetId"], # required
},
output_data_config: { # required
kms_key_id: "KmsKeyId",
s3_output_path: "S3Uri", # required
},
resource_config: { # required
instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge
instance_count: 1, # required
volume_size_in_gb: 1, # required
volume_kms_key_id: "KmsKeyId",
},
stopping_condition: { # required
max_runtime_in_seconds: 1,
max_wait_time_in_seconds: 1,
},
enable_network_isolation: false,
enable_inter_container_traffic_encryption: false,
enable_managed_spot_training: false,
checkpoint_config: {
s3_uri: "S3Uri", # required
local_path: "DirectoryPath",
},
}
Defines the training jobs launched by a hyperparameter tuning job.
Instance Attribute Summary collapse
-
#algorithm_specification ⇒ Types::HyperParameterAlgorithmSpecification
The HyperParameterAlgorithmSpecification object that specifies the resource algorithm to use for the training jobs that the tuning job launches.
-
#checkpoint_config ⇒ Types::CheckpointConfig
Contains information about the output location for managed spot training checkpoint data.
-
#definition_name ⇒ String
The job definition name.
-
#enable_inter_container_traffic_encryption ⇒ Boolean
To encrypt all communications between ML compute instances in distributed training, choose ‘True`.
-
#enable_managed_spot_training ⇒ Boolean
A Boolean indicating whether managed spot training is enabled (‘True`) or not (`False`).
-
#enable_network_isolation ⇒ Boolean
Isolates the training container.
-
#hyper_parameter_ranges ⇒ Types::ParameterRanges
Specifies ranges of integer, continuous, and categorical hyperparameters that a hyperparameter tuning job searches.
-
#input_data_config ⇒ Array<Types::Channel>
An array of Channel objects that specify the input for the training jobs that the tuning job launches.
-
#output_data_config ⇒ Types::OutputDataConfig
Specifies the path to the Amazon S3 bucket where you store model artifacts from the training jobs that the tuning job launches.
-
#resource_config ⇒ Types::ResourceConfig
The resources, including the compute instances and storage volumes, to use for the training jobs that the tuning job launches.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role associated with the training jobs that the tuning job launches.
-
#static_hyper_parameters ⇒ Hash<String,String>
Specifies the values of hyperparameters that do not change for the tuning job.
-
#stopping_condition ⇒ Types::StoppingCondition
Specifies a limit to how long a model hyperparameter training job can run.
-
#tuning_objective ⇒ Types::HyperParameterTuningJobObjective
Defines the objective metric for a hyperparameter tuning job.
-
#vpc_config ⇒ Types::VpcConfig
The VpcConfig object that specifies the VPC that you want the training jobs that this hyperparameter tuning job launches to connect to.
Instance Attribute Details
#algorithm_specification ⇒ Types::HyperParameterAlgorithmSpecification
The HyperParameterAlgorithmSpecification object that specifies the resource algorithm to use for the training jobs that the tuning job launches.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#checkpoint_config ⇒ Types::CheckpointConfig
Contains information about the output location for managed spot training checkpoint data.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#definition_name ⇒ String
The job definition name.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#enable_inter_container_traffic_encryption ⇒ Boolean
To encrypt all communications between ML compute instances in distributed training, choose ‘True`. Encryption provides greater security for distributed training, but training might take longer. How long it takes depends on the amount of communication between compute instances, especially if you use a deep learning algorithm in distributed training.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#enable_managed_spot_training ⇒ Boolean
A Boolean indicating whether managed spot training is enabled (‘True`) or not (`False`).
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#enable_network_isolation ⇒ Boolean
Isolates the training container. No inbound or outbound network calls can be made, except for calls between peers within a training cluster for distributed training. If network isolation is used for training jobs that are configured to use a VPC, Amazon SageMaker downloads and uploads customer data and model artifacts through the specified VPC, but the training container does not have network access.
<note markdown=“1”> The Semantic Segmentation built-in algorithm does not support network isolation.
</note>
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#hyper_parameter_ranges ⇒ Types::ParameterRanges
Specifies ranges of integer, continuous, and categorical hyperparameters that a hyperparameter tuning job searches. The hyperparameter tuning job launches training jobs with hyperparameter values within these ranges to find the combination of values that result in the training job with the best performance as measured by the objective metric of the hyperparameter tuning job.
<note markdown=“1”> You can specify a maximum of 20 hyperparameters that a hyperparameter tuning job can search over. Every possible value of a categorical parameter range counts against this limit.
</note>
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#input_data_config ⇒ Array<Types::Channel>
An array of Channel objects that specify the input for the training jobs that the tuning job launches.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#output_data_config ⇒ Types::OutputDataConfig
Specifies the path to the Amazon S3 bucket where you store model artifacts from the training jobs that the tuning job launches.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#resource_config ⇒ Types::ResourceConfig
The resources, including the compute instances and storage volumes, to use for the training jobs that the tuning job launches.
Storage volumes store model artifacts and incremental states. Training algorithms might also use storage volumes for scratch space. If you want Amazon SageMaker to use the storage volume to store the training data, choose ‘File` as the `TrainingInputMode` in the algorithm specification. For distributed training algorithms, specify an instance count greater than 1.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role associated with the training jobs that the tuning job launches.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#static_hyper_parameters ⇒ Hash<String,String>
Specifies the values of hyperparameters that do not change for the tuning job.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#stopping_condition ⇒ Types::StoppingCondition
Specifies a limit to how long a model hyperparameter training job can run. It also specifies how long you are willing to wait for a managed spot training job to complete. When the job reaches the a limit, Amazon SageMaker ends the training job. Use this API to cap model training costs.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#tuning_objective ⇒ Types::HyperParameterTuningJobObjective
Defines the objective metric for a hyperparameter tuning job. Hyperparameter tuning uses the value of this metric to evaluate the training jobs it launches, and returns the training job that results in either the highest or lowest value for this metric, depending on the value you specify for the ‘Type` parameter.
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
The VpcConfig object that specifies the VPC that you want the training jobs that this hyperparameter tuning job launches to connect to. Control access to and from your training container by configuring the VPC. For more information, see [Protect Training Jobs by Using an Amazon Virtual Private Cloud].
10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10530 class HyperParameterTrainingJobDefinition < Struct.new( :definition_name, :tuning_objective, :hyper_parameter_ranges, :static_hyper_parameters, :algorithm_specification, :role_arn, :input_data_config, :vpc_config, :output_data_config, :resource_config, :stopping_condition, :enable_network_isolation, :enable_inter_container_traffic_encryption, :enable_managed_spot_training, :checkpoint_config) include Aws::Structure end |