Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions sagemaker-core/src/sagemaker/core/training/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,28 +124,7 @@ class SourceCode(BaseConfig):
".ipynb_checkpoints",
]

class OutputDataConfig(shapes.OutputDataConfig):
"""OutputDataConfig.

Provides the configuration for the output data location of the training job
(will not be carried over to any model repository or deployment).

Parameters:
s3_output_path (Optional[StrPipeVar]):
The S3 URI where the output data will be stored. This is the location where the
training job will save its output data, such as model artifacts and logs.
kms_key_id (Optional[StrPipeVar]):
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that
SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side
encryption.
compression_type (Optional[StrPipeVar]):
The model output compression type. Select None to output an uncompressed model,
recommended for large model outputs. Defaults to gzip.
"""

s3_output_path: Optional[StrPipeVar] = None
kms_key_id: Optional[StrPipeVar] = None
compression_type: Optional[StrPipeVar] = None


class Compute(shapes.ResourceConfig):
Expand Down
Loading