You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
222
222
223
223
After calling ``fit``, you can call ``deploy`` on a ``PyTorch`` Estimator to create a SageMaker Endpoint.
224
224
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
261
261
to SageMaker InvokeEndpoint API calls.
262
262
263
263
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.
265
265
Serving is the process of translating InvokeEndpoint requests to inference calls on the loaded model.
266
266
267
267
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
473
473
Attach to existing training jobs
474
474
--------------------------------
475
475
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
477
477
``attach`` method.
478
478
479
479
.. code:: python
@@ -626,7 +626,7 @@ The following are optional arguments. When you create a ``PyTorch`` object, you
626
626
model training code.
627
627
- ``framework_version`` PyTorch version you want to use for executing
628
628
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>`_.
630
630
- ``train_volume_size`` Size in GB of the EBS volume to use for storing
631
631
input data during training. Must be large enough to store training
632
632
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
655
655
and where to find the source code to build your custom image.
656
656
657
657
***********************************
658
-
SageMaker PyTorch Docker containers
658
+
SageMaker PyTorch Docker Containers
659
659
***********************************
660
660
661
661
For information about SageMaker PyTorch containers, see `the SageMaker PyTorch containers repository <https://github.com/aws/sagemaker-pytorch-containers>`_.
0 commit comments