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
Note:
When making an API call, you may pass CheckpointConfig data as a hash:
{
s3_uri: "S3Uri", # required
local_path: "DirectoryPath",
}
Contains information about the output location for managed spot training checkpoint data.
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 Amazon 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/`.
1556 1557 1558 1559 1560 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1556 class CheckpointConfig < Struct.new( :s3_uri, :local_path) include Aws::Structure end |
#s3_uri ⇒ String
Identifies the S3 path where you want Amazon SageMaker to store checkpoints. For example, ‘s3://bucket-name/key-name-prefix`.
1556 1557 1558 1559 1560 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1556 class CheckpointConfig < Struct.new( :s3_uri, :local_path) include Aws::Structure end |