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
@@ -375,6 +376,39 @@ For more detailed explanations of the classes that this library provides for aut
375
376
- `API docs for analytics classes <https://sagemaker.readthedocs.io/en/latest/analytics.html>`__
376
377
377
378
379
+
SageMaker Batch Transform
380
+
-------------------------
381
+
382
+
Once you have a trained model, you can use Amazon SageMaker Batch Transform to perform inferences with the model.
383
+
Batch Transform manages all compute resources necessary, including launching instances to deploy endpoints and deleting them afterward.
384
+
You can read more about SageMaker Batch Transform in the `AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/how-it-works-batch.html>`__.
385
+
386
+
If you have trained the model using a SageMaker Python SDK Estimator, you can simply invoke ``transformer()`` to create a ``Transformer`` for the training job:
For a full list of the possible options to configure through either of these methods, please refer to the API docs for `Estimator <https://sagemaker.readthedocs.io/en/latest/estimators.html#sagemaker.estimator.Estimator.transformer>`__ or `Transformer <https://sagemaker.readthedocs.io/en/latest/transformer.html#sagemaker.transformer.Transformer>`__.
401
+
402
+
Once you've created a ``Transformer`` object, you can invoke ``transform()`` to being a batch transform job with the S3 location of your data.
403
+
You can also specify other attributes about your data, such as the content type.
For more details about what can be specified here, please refer to the `API docs <https://sagemaker.readthedocs.io/en/latest/transformer.html#sagemaker.transformer.Transformer.transform>`__.
410
+
411
+
378
412
FAQ
379
413
---
380
414
@@ -422,7 +456,7 @@ Example code using the TensorFlow predictor:
422
456
423
457
424
458
BYO Model
425
-
-----------------------------------------------
459
+
---------
426
460
You can also create an endpoint from an existing model rather than training one - i.e. bring your own model.
427
461
428
462
First, package the files for the trained model into a ``.tar.gz`` file, and upload the archive to S3.
0 commit comments