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
Amazon SageMaker provides several built-in machine learning algorithms that you can use to solve a variety of problems.
267
-
268
-
The full list of algorithms is available at: https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html
269
-
270
-
The SageMaker Python SDK includes estimator wrappers for the AWS K-means, Principal Components Analysis (PCA), Linear Learner, Factorization Machines,
271
-
Latent Dirichlet Allocation (LDA), Neural Topic Model (NTM), Random Cut Forest, k-nearest neighbors (k-NN), Object2Vec, and IP Insights algorithms.
272
-
273
-
For more information, see `AWS SageMaker Estimators and Models`_.
274
-
275
-
.. _AWS SageMaker Estimators and Models: src/sagemaker/amazon/README.rst
276
-
277
-
Amazon SageMaker Operators for Kubernetes
278
-
-----------------------------------------
279
-
280
-
You can use Amazon SageMaker Operators for Kubernetes to optimize hyperparameters for a given model, run batch transform jobs over existing models, and set up inference endpoints.
281
-
282
-
For more information, see `Amazon SageMaker Operators for Kubernetes`_.
283
-
284
-
.. _Amazon SageMaker Operators for Kubernetes: https://sagemaker.readthedocs.io/en/stable/amazon_sagemaker_operators_for_kubernetes.html
285
-
286
-
Amazon SageMaker Operators in Apache Airflow
287
-
--------------------------------------------
288
-
289
-
You can use Apache Airflow to author, schedule and monitor SageMaker workflow.
290
-
291
-
For more information, see `Amazon SageMaker Operators in Apache Airflow`_.
292
-
293
-
.. _Amazon SageMaker Operators in Apache Airflow: https://sagemaker.readthedocs.io/en/stable/using_workflow.html
294
-
295
-
SageMaker Autopilot
296
-
-------------------
297
-
298
-
Amazon SageMaker Autopilot is an automated machine learning solution (commonly referred to as "AutoML") for tabular
299
-
datasets. It automatically trains and tunes the best machine learning models for classification or regression based
300
-
on your data, and hosts a series of models on an Inference Pipeline.
301
-
302
-
For more information about SageMaker Autopilot, see `SageMaker Autopilot`_.
Copy file name to clipboardExpand all lines: doc/using_mxnet.rst
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@ Use MXNet with the SageMaker Python SDK
5
5
With the SageMaker Python SDK, you can train and host MXNet models on Amazon SageMaker.
6
6
7
7
For information about supported versions of MXNet, see the `AWS documentation <https://docs.aws.amazon.com/deep-learning-containers/latest/devguide/deep-learning-containers-images.html>`__.
8
-
9
8
We recommend that you use the latest supported version because that's where we focus our development efforts.
10
9
11
10
For general information about using the SageMaker Python SDK, see :ref:`overview:Using the SageMaker Python SDK`.
Copy file name to clipboardExpand all lines: doc/using_sklearn.rst
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,10 @@ Using Scikit-learn with the SageMaker Python SDK
4
4
5
5
With Scikit-learn Estimators, you can train and host Scikit-learn models on Amazon SageMaker.
6
6
7
-
For information about supported versions of Scikit-learn, see the `Chainer README <https://github.com/aws/sagemaker-python-sdk/blob/master/src/sagemaker/sklearn/README.rst>`__.
7
+
For information about supported versions of Scikit-learn, see the `AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/sklearn.html>`__.
8
+
We recommend that you use the latest supported version because that's where we focus most of our development efforts.
8
9
10
+
You can visit the Scikit-learn repository at https://github.com/scikit-learn/scikit-learn.
9
11
For general information about using the SageMaker Python SDK, see :ref:`overview:Using the SageMaker Python SDK`.
10
12
11
13
.. contents::
@@ -594,6 +596,4 @@ The following are optional arguments. When you create a ``SKLearn`` object, you
594
596
SageMaker Scikit-learn Docker Containers
595
597
****************************************
596
598
597
-
You can visit the SageMaker Scikit-Learn containers repository here: hhttps://github.com/aws/sagemaker-scikit-learn-container
598
-
599
-
For information about SageMaker TensorFlow Docker containers and their dependencies, see `SageMaker Scikit-learn Docker Containers <https://github.com/aws/sagemaker-python-sdk/tree/master/src/sagemaker/sklearn#sagemaker-scikit-learn-docker-containers>`_.
599
+
You can visit the SageMaker Scikit-Learn containers repository here: https://github.com/aws/sagemaker-scikit-learn-container
Copy file name to clipboardExpand all lines: doc/using_tf.rst
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,10 @@
2
2
Using TensorFlow with the SageMaker Python SDK
3
3
##############################################
4
4
5
-
TensorFlow SageMaker Estimators allow you to run your own TensorFlow
6
-
training algorithms on SageMaker Learner, and to host your own TensorFlow
7
-
models on SageMaker Hosting.
5
+
With the SageMaker Python SDK, you can train and host TensorFlow models on Amazon SageMaker.
6
+
7
+
For information about supported versions of TensorFlow, see the `AWS documentation <https://docs.aws.amazon.com/deep-learning-containers/latest/devguide/deep-learning-containers-images.html>`__.
8
+
We recommend that you use the latest supported version because that's where we focus our development efforts.
8
9
9
10
For general information about using the SageMaker Python SDK, see :ref:`overview:Using the SageMaker Python SDK`.
10
11
@@ -20,9 +21,6 @@ For general information about using the SageMaker Python SDK, see :ref:`overview
20
21
21
22
.. contents::
22
23
23
-
Supported versions of TensorFlow for Elastic Inference: ``1.11``, ``1.12``, ``1.13``, ``1.14``, ``1.15``, ``2.0``.
24
-
25
-
26
24
*****************************
27
25
Train a Model with TensorFlow
28
26
*****************************
@@ -40,7 +38,7 @@ To train a TensorFlow model by using the SageMaker Python SDK:
40
38
3. |call fit|_
41
39
42
40
Prepare a Script Mode Training Script
43
-
======================================
41
+
=====================================
44
42
45
43
Your TensorFlow training script must be a Python 2.7-, 3.6- or 3.7-compatible source file.
Copy file name to clipboardExpand all lines: src/sagemaker/amazon/README.rst
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
-
2
1
===================================
3
2
AWS SageMaker Estimators and Models
4
3
===================================
5
4
6
5
Amazon SageMaker provides several built-in machine learning algorithms that you can use for a variety of problem types.
6
+
SageMaker Python SDK includes Estimators for many of these algorithms, including K-means, Principal Components Analysis (PCA),
7
+
Linear Learner, Factorization Machines, Latent Dirichlet Allocation (LDA), Neural Topic Model (NTM), Random Cut Forest,
8
+
k-nearest neighbors (k-NN), Object2Vec, and IP Insights.
7
9
8
-
The full list of algorithms is available on the AWS website: https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html
9
-
10
-
SageMaker Python SDK includes Estimator wrappers for the AWS K-means, Principal Components Analysis(PCA), Linear Learner, Factorization Machines, Latent Dirichlet Allocation(LDA), Neural Topic Model(NTM), Random Cut Forest algorithms, k-nearest neighbors (k-NN), Object2Vec, and IP Insights.
10
+
For the full list of algorithms, visit `the AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html>`_.
0 commit comments