-
Notifications
You must be signed in to change notification settings - Fork 1.2k
README.rst additions #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
.. image:: branding/icon/sagemaker-banner.png | ||
:height: 100px | ||
:alt: SageMaker | ||
|
||
==================== | ||
SageMaker Python SDK | ||
==================== | ||
|
||
SageMaker Python SDK is an open source library for training and deploying machine learning models on Amazon SageMaker. | ||
|
||
With the SDK, you can train and deploy models using popular deep learning frameworks: **Apache MXNet** and **TensorFlow**. You can also train and deploy models with **Amazon algorithms**, these are scalable implementations of core machine learning algorithms that are optimized for SageMaker and GPU training. If you have **your own algorithms** built into SageMaker compatible Docker containers, you can train and host models using these as well. | ||
|
||
For detailed API reference please go to: `Read the Docs <https://readthedocs.org/projects/sagemaker/>`_ | ||
|
||
Table of Contents | ||
----------------- | ||
|
||
|
@@ -1419,6 +1426,20 @@ The full list of algorithms is available on the AWS website: https://docs.aws.am | |
|
||
SageMaker Python SDK includes Estimator wrappers for the AWS K-means, Principal Components Analysis, and Liner Learner algorithms. | ||
|
||
Definition and usage | ||
~~~~~~~~~~~~~~~~~~~~ | ||
Estimators that wrap Amazon's built-in algorithms define algorithm's hyperparameters with defaults. When a default is not possible you need to provide the value during construction: | ||
|
||
- ``KMean`` Estimator requires parameter ``k`` to define number of clusters | ||
- ``PCA`` Estimator requires parameter ``num_components`` to define number of principal components | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a code block with example usage of these estimators here? |
||
|
||
Interaction is identical as any other Estimators. | ||
|
||
Predictions support | ||
~~~~~~~~~~~~~~~~~~~ | ||
Calling inference on deployed Amazon's built-in algorithms you must follow specific input format. By default this library creates a predictor that allows to use just numpy data. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Calling inference on deployed Amazon's built-in algorithms requires a specific input format. By default , ... |
||
Data is converted so that ``application/x-recordio-protobuf`` input format is used. Received response is deserialized from the protobuf and provided as result from the ``predict`` call. | ||
|
||
|
||
BYO Docker Containers with SageMaker Estimators | ||
----------------------------------------------- | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know you didn't change this line, but would you mind to fix the type Liner -> Linear?