Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data CheckpointConfig Source #
Contains information about the output location for managed spot training checkpoint data.
See: newCheckpointConfig
smart constructor.
Instances
Create a value of CheckpointConfig
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:localPath:CheckpointConfig'
, checkpointConfig_localPath
- (Optional) The local directory where checkpoints are written. The
default directory is /opt/ml/checkpoints/
.
$sel:s3Uri:CheckpointConfig'
, checkpointConfig_s3Uri
- Identifies the S3 path where you want Amazon SageMaker to store
checkpoints. For example, s3://bucket-name/key-name-prefix
.
checkpointConfig_localPath :: Lens' CheckpointConfig (Maybe Text) Source #
(Optional) The local directory where checkpoints are written. The
default directory is /opt/ml/checkpoints/
.
checkpointConfig_s3Uri :: Lens' CheckpointConfig Text Source #
Identifies the S3 path where you want Amazon SageMaker to store
checkpoints. For example, s3://bucket-name/key-name-prefix
.