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
Copy file name to clipboardExpand all lines: doc/overview.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ SageMaker Python SDK provides several high-level abstractions for working with A
9
9
- **Predictors**: Provide real-time inference and transformation using Python data-types against a SageMaker endpoint.
10
10
- **Session**: Provides a collection of methods for working with SageMaker resources.
11
11
12
-
``Estimator`` and ``Model`` implementations for MXNet, TensorFlow, Chainer, PyTorch, scikit-Learn, Amazon SageMaker built-in algorithms, Reinforcement Learning, are included.
12
+
``Estimator`` and ``Model`` implementations for MXNet, TensorFlow, Chainer, PyTorch, scikit-learn, Amazon SageMaker built-in algorithms, Reinforcement Learning, are included.
13
13
There's also an ``Estimator`` that runs SageMaker compatible custom Docker containers, enabling you to run your own ML algorithms by using the SageMaker Python SDK.
14
14
15
15
.. contents::
@@ -30,7 +30,7 @@ After you train a model, you can save it, and then serve the model as an endpoin
30
30
Prepare a Training script
31
31
=========================
32
32
33
-
Your training script must be a Python 2.7 or 3.5 compatible source file.
33
+
Your training script must be a Python 2.7 or 3.6 compatible source file.
34
34
35
35
The training script is very similar to a training script you might run outside of SageMaker, but you can access useful properties about the training environment through various environment variables, including the following:
36
36
@@ -984,4 +984,4 @@ Example code using the TensorFlow predictor:
984
984
from sagemaker.tensorflow import TensorFlowPredictor
0 commit comments