Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc58bef

Browse files
authoredFeb 21, 2022
Reference PyTorch instead of MXNet
Documentation was erroneously referring to MXNet despite this handler service being written for PyTorch
1 parent d3fd2f3 commit cc58bef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/sagemaker_pytorch_serving_container/handler_service.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ class HandlerService(DefaultHandlerService):
2626

2727
"""Handler service that is executed by the model server.
2828
29-
Determines specific default inference handlers to use based on the type MXNet model being used.
29+
Determines specific default inference handlers to use based on the type of PyTorch model being used.
3030
3131
This class extends ``DefaultHandlerService``, which define the following:
3232
- The ``handle`` method is invoked for all incoming inference requests to the model server.
3333
- The ``initialize`` method is invoked at model server start up.
3434
35-
Based on: https://github.com/awslabs/mxnet-model-server/blob/master/docs/custom_service.md
35+
Based on: https://github.com/awslabs/multi-model-server/blob/master/docs/custom_service.md
3636
3737
"""
3838
def __init__(self):

0 commit comments

Comments
 (0)
Please sign in to comment.