Class: Aws::SageMaker::Types::SourceAlgorithm
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::SourceAlgorithm
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
When making an API call, you may pass SourceAlgorithm data as a hash:
{
model_data_url: "Url",
algorithm_name: "ArnOrName", # required
}
Specifies an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.
Instance Attribute Summary collapse
-
#algorithm_name ⇒ String
The name of an algorithm that was used to create the model package.
-
#model_data_url ⇒ String
The Amazon S3 path where the model artifacts, which result from model training, are stored.
Instance Attribute Details
#algorithm_name ⇒ String
The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.
17523 17524 17525 17526 17527 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 17523 class SourceAlgorithm < Struct.new( :model_data_url, :algorithm_name) include Aws::Structure end |
#model_data_url ⇒ String
The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single ‘gzip` compressed tar archive (`.tar.gz` suffix).
17523 17524 17525 17526 17527 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 17523 class SourceAlgorithm < Struct.new( :model_data_url, :algorithm_name) include Aws::Structure end |