Skip to content

documentation: Update estimator docstrings to add Fast File Mode #2722

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Oct 28, 2021
Merged
Changes from 3 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
6 changes: 4 additions & 2 deletions src/sagemaker/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ def __init__(
(default: 'File'). Valid modes: 'File' - Amazon SageMaker copies
the training dataset from the S3 location to a local directory.
'Pipe' - Amazon SageMaker streams data directly from S3 to the
container via a Unix-named pipe. This argument can be overriden
on a per-channel basis using
container via a Unix-named pipe.
'FastFile' - Amazon SageMaker streams data from S3 on demand instead of
downloading the entire dataset before training begins. This argument can
be overriden on a per-channel basis using
``sagemaker.inputs.TrainingInput.input_mode``.
output_path (str): S3 location for saving the training result (model
artifacts and output files). If not specified, results are
Expand Down