Skip to content

Commit 0cd9b94

Browse files
committed
doc: fix typos in using_pytorch.rst
1 parent 041af1b commit 0cd9b94

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/using_pytorch.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can visit the PyTorch repository at https://github.com/pytorch/pytorch.
1616
Train a Model with PyTorch
1717
**************************
1818

19-
To train an PyTorch model by using the SageMaker Python SDK:
19+
To train a PyTorch model by using the SageMaker Python SDK:
2020

2121
.. |create pytorch estimator| replace:: Create a ``sagemaker.pytorch.PyTorch`` Estimator
2222
.. _create pytorch estimator: #create-an-estimator
@@ -218,7 +218,7 @@ Supported backends:
218218
Deploy PyTorch Models
219219
*********************
220220

221-
After an PyTorch Estimator has been fit, you can host the newly created model in SageMaker.
221+
After a PyTorch Estimator has been fit, you can host the newly created model in SageMaker.
222222

223223
After calling ``fit``, you can call ``deploy`` on a ``PyTorch`` Estimator to create a SageMaker Endpoint.
224224
The Endpoint runs a SageMaker-provided PyTorch model server and hosts the model produced by your training script,
@@ -261,7 +261,7 @@ The model server loads the model that was saved by your training script and perf
261261
to SageMaker InvokeEndpoint API calls.
262262

263263
You can configure two components of the SageMaker PyTorch model server: Model loading and model serving.
264-
Model loading is the process of deserializing your saved model back into an PyTorch model.
264+
Model loading is the process of deserializing your saved model back into a PyTorch model.
265265
Serving is the process of translating InvokeEndpoint requests to inference calls on the loaded model.
266266

267267
You configure the PyTorch model server by defining functions in the Python source file you passed to the PyTorch constructor.
@@ -473,7 +473,7 @@ Working with Existing Model Data and Training Jobs
473473
Attach to existing training jobs
474474
--------------------------------
475475

476-
You can attach an PyTorch Estimator to an existing training job using the
476+
You can attach a PyTorch Estimator to an existing training job using the
477477
``attach`` method.
478478

479479
.. code:: python
@@ -626,7 +626,7 @@ The following are optional arguments. When you create a ``PyTorch`` object, you
626626
model training code.
627627
- ``framework_version`` PyTorch version you want to use for executing
628628
your model training code. You can find the list of supported versions
629-
in `the section below <#sagemaker-pytorch-docker-containers>`__.
629+
in `SageMaker PyTorch Docker Containers <#id4>`_.
630630
- ``train_volume_size`` Size in GB of the EBS volume to use for storing
631631
input data during training. Must be large enough to store training
632632
data if input_mode='File' is used (which is the default).
@@ -655,7 +655,7 @@ The following are optional arguments. When you create a ``PyTorch`` object, you
655655
and where to find the source code to build your custom image.
656656

657657
***********************************
658-
SageMaker PyTorch Docker containers
658+
SageMaker PyTorch Docker Containers
659659
***********************************
660660

661661
For information about SageMaker PyTorch containers, see `the SageMaker PyTorch containers repository <https://github.com/aws/sagemaker-pytorch-containers>`_.

0 commit comments

Comments
 (0)