Class: Aws::SageMaker::Types::ModelArtifacts
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelArtifacts
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Provides information about the location that is configured for storing model artifacts.
Model artifacts are outputs that result from training a model. They
typically consist of trained parameters, a model definition that
describes how to compute inferences, and other metadata. A SageMaker
container stores your trained model artifacts in the /opt/ml/model
directory. After training has completed, by default, these artifacts
are uploaded to your Amazon S3 bucket as compressed files.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_model_artifacts ⇒ String
The path of the S3 object that contains the model artifacts.
Instance Attribute Details
#s3_model_artifacts ⇒ String
The path of the S3 object that contains the model artifacts. For
example, s3://bucket-name/keynameprefix/model.tar.gz
.
32076 32077 32078 32079 32080 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32076 class ModelArtifacts < Struct.new( :s3_model_artifacts) SENSITIVE = [] include Aws::Structure end |