Skip to content

move EI docs from TFS Rest API docs to TFS python docs #637

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

Merged
merged 1 commit into from
Feb 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/sagemaker/tensorflow/deploying_python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ like this:

The code block above deploys a SageMaker Endpoint with one instance of the type 'ml.c4.xlarge'.

TensorFlow serving on SageMaker has support for `Elastic Inference <https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html>`_, which allows for inference acceleration to a hosted endpoint for a fraction of the cost of using a full GPU instance. In order to attach an Elastic Inference accelerator to your endpoint provide the accelerator type to ``accelerator_type`` to your ``deploy`` call.

.. code:: python

predictor = estimator.deploy(initial_instance_count=1,
instance_type='ml.c5.xlarge',
accelerator_type='ml.eia1.medium'
endpoint_type='tensorflow-serving-elastic-inference')

What happens when deploy is called
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
9 changes: 0 additions & 9 deletions src/sagemaker/tensorflow/deploying_tensorflow_serving.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,6 @@ estimator object to create a SageMaker Endpoint:

The code block above deploys a SageMaker Endpoint with one instance of the type 'ml.c5.xlarge'.

TensorFlow serving on SageMaker has support for `Elastic Inference <https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html>`_, which allows for inference acceleration to a hosted endpoint for a fraction of the cost of using a full GPU instance. In order to attach an Elastic Inference accelerator to your endpoint provide the accelerator type to ``accelerator_type`` to your ``deploy`` call.

.. code:: python

predictor = estimator.deploy(initial_instance_count=1,
instance_type='ml.c5.xlarge',
accelerator_type='ml.eia1.medium'
endpoint_type='tensorflow-serving-elastic-inference')

What happens when deploy is called
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down