Class: Aws::SageMaker::Types::CheckpointConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CheckpointConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Contains information about the output location for managed spot training checkpoint data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#local_path ⇒ String
(Optional) The local directory where checkpoints are written.
-
#s3_uri ⇒ String
Identifies the S3 path where you want SageMaker to store checkpoints.
Instance Attribute Details
#local_path ⇒ String
(Optional) The local directory where checkpoints are written. The
default directory is /opt/ml/checkpoints/
.
3760 3761 3762 3763 3764 3765 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3760 class CheckpointConfig < Struct.new( :s3_uri, :local_path) SENSITIVE = [] include Aws::Structure end |
#s3_uri ⇒ String
Identifies the S3 path where you want SageMaker to store
checkpoints. For example, s3://bucket-name/key-name-prefix
.
3760 3761 3762 3763 3764 3765 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3760 class CheckpointConfig < Struct.new( :s3_uri, :local_path) SENSITIVE = [] include Aws::Structure end |