Skip to content

documentation: spelling error correction #727

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 3 commits into from
Apr 1, 2019
Merged
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
4 changes: 2 additions & 2 deletions src/sagemaker/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(self, role, train_instance_count, train_instance_type,
'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 ``sagemaker.session.s3_input.input_mode``.
output_path (str): S3 location for saving the trainig result (model artifacts and output files).
output_path (str): S3 location for saving the training result (model artifacts and output files).
If not specified, results are stored to a default bucket. If the bucket with the specific name
does not exist, the estimator creates the bucket during the
:meth:`~sagemaker.estimator.EstimatorBase.fit` method execution.
Expand Down Expand Up @@ -633,7 +633,7 @@ def __init__(self, image_name, role, train_instance_count, train_instance_type,
* '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 ``sagemaker.session.s3_input.input_mode``.
output_path (str): S3 location for saving the trainig result (model artifacts and output files).
output_path (str): S3 location for saving the training result (model artifacts and output files).
If not specified, results are stored to a default bucket. If the bucket with the specific name
does not exist, the estimator creates the bucket during the
:meth:`~sagemaker.estimator.EstimatorBase.fit` method execution.
Expand Down