AlgorithmSpecification — AWS SDK for Ruby V3 (original) (raw)

Class: Aws::SageMaker::Types::AlgorithmSpecification

Inherits:

Struct

Defined in:

gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Specifies the training algorithm to use in a CreateTrainingJobrequest.

SageMaker uses its own SageMaker account credentials to pull and access built-in algorithms so built-in algorithms are universally accessible across all Amazon Web Services accounts. As a result, built-in algorithms have standard, unrestricted access. You cannot restrict built-in algorithms using IAM roles. Use custom algorithms if you require specific access controls.

For more information about algorithms provided by SageMaker, seeAlgorithms. For information about using your own algorithms, seeUsing Your Own Algorithms with Amazon SageMaker.

Constant Summarycollapse

SENSITIVE =

[]

Instance Attribute Summary collapse

Instance Attribute Details

#algorithm_name ⇒ String

The name of the algorithm resource to use for the training job. This must be an algorithm resource that you created or subscribe to on Amazon Web Services Marketplace.

You must specify either the algorithm name to the AlgorithmNameparameter or the image URI of the algorithm container to theTrainingImage parameter.

Note that the AlgorithmName parameter is mutually exclusive with the TrainingImage parameter. If you specify a value for theAlgorithmName parameter, you can't specify a value forTrainingImage, and vice versa.

If you specify values for both parameters, the training job might break; if you don't specify any value for both parameters, the training job might raise a null error.

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#container_arguments ⇒ Array

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#container_entrypoint ⇒ Array

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#enable_sage_maker_metrics_time_series ⇒ Boolean

To generate and save time-series metrics during training, set totrue. The default is false and time-series metrics aren't generated except in the following cases:

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#metric_definitions ⇒ Array<Types::MetricDefinition>

A list of metric definition objects. Each object specifies the metric name and regular expressions used to parse algorithm logs. SageMaker publishes each metric to Amazon CloudWatch.

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#training_image ⇒ String

The registry path of the Docker image that contains the training algorithm. For information about docker registry paths for SageMaker built-in algorithms, see Docker Registry Paths and Example Codein the Amazon SageMaker developer guide. SageMaker supports bothregistry/repository[:tag] and registry/repository[@digest] image path formats. For more information about using your custom training container, see Using Your Own Algorithms with Amazon SageMaker.

You must specify either the algorithm name to the AlgorithmNameparameter or the image URI of the algorithm container to theTrainingImage parameter.

For more information, see the note in the AlgorithmName parameter description.

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#training_image_configTypes::TrainingImageConfig

The configuration to use an image from a private Docker registry for a training job.

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end

#training_input_mode ⇒ String

The training input mode that the algorithm supports. For more information about input modes, see Algorithms.

Pipe mode

If an algorithm supports Pipe mode, Amazon SageMaker streams data directly from Amazon S3 to the container.

File mode

If an algorithm supports File mode, SageMaker downloads the training data from S3 to the provisioned ML storage volume, and mounts the directory to the Docker volume for the training container.

You must provision the ML storage volume with sufficient capacity to accommodate the data downloaded from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container uses the ML storage volume to also store intermediate information, if any.

For distributed algorithms, training data is distributed uniformly. Your training duration is predictable if the input data objects sizes are approximately the same. SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed when one host in a training cluster is overloaded, thus becoming a bottleneck in training.

FastFile mode

If an algorithm supports FastFile mode, SageMaker streams data directly from S3 to the container with no code changes, and provides file system access to the data. Users can author their training script to interact with these files as if they were stored on disk.

FastFile mode works best when the data is read sequentially. Augmented manifest files aren't supported. The startup time is lower when there are fewer files in the S3 bucket provided.

498 499 500 501 502 503 504 505 506 507 508 509 # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmSpecification < Struct.new( :training_image, :algorithm_name, :training_input_mode, :metric_definitions, :enable_sage_maker_metrics_time_series, :container_entrypoint, :container_arguments, :training_image_config) SENSITIVE = [] include Aws::Structure end