Skip to content

Commit 842245f

Browse files
committed
Fix wrong python version reference.
1 parent 274ab29 commit 842245f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sagemaker/pytorch/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ When training and deploying training scripts, SageMaker runs your Python script
674674
libraries installed. When creating the Estimator and calling deploy to create the SageMaker Endpoint, you can control
675675
the environment your script runs in.
676676

677-
SageMaker runs PyTorch Estimator scripts in either Python 2.7 or Python 3.6. You can select the Python version by
677+
SageMaker runs PyTorch Estimator scripts in either Python 2 or Python 3. You can select the Python version by
678678
passing a ``py_version`` keyword arg to the PyTorch Estimator constructor. Setting this to `py3` (the default) will cause your
679679
training script to be run on Python 3.5. Setting this to `py2` will cause your training script to be run on Python 2.7
680680
This Python version applies to both the Training Job, created by fit, and the Endpoint, created by deploy.
@@ -714,7 +714,7 @@ The PyTorch Docker images have the following dependencies installed:
714714
+-----------------------------+---------------+-------------------+
715715
| torchvision | 0.2.1 | 0.2.1 |
716716
+-----------------------------+---------------+-------------------+
717-
| Python | 2.7 or 3.6 | 2.7 or 3.6 |
717+
| Python | 2.7 or 3.5 | 2.7 or 3.6 |
718718
+-----------------------------+---------------+-------------------+
719719

720720
The Docker images extend Ubuntu 16.04.

0 commit comments

Comments
 (0)