Class: Aws::SageMaker::Types::CheckpointConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CheckpointConfig
- Includes:
- Aws::Structure
- Defined in:
- 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/`.
3748 3749 3750 3751 3752 3753 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3748 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`.
3748 3749 3750 3751 3752 3753 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3748 class CheckpointConfig < Struct.new( :s3_uri, :local_path) SENSITIVE = [] include Aws::Structure end |