diff --git a/src/sagemaker/chainer/README.rst b/src/sagemaker/chainer/README.rst index b168c6c085..1952add099 100644 --- a/src/sagemaker/chainer/README.rst +++ b/src/sagemaker/chainer/README.rst @@ -409,8 +409,7 @@ When an InvokeEndpoint operation is made against an Endpoint running a SageMaker the model server receives two pieces of information: - The request Content-Type, for example "application/x-npy" -- The request data body, a byte array which is at most 5 MB (5 \* 1024 - \* 1024 bytes) in size. +- The request data body, a byte array The SageMaker Chainer model server will invoke an "input_fn" function in your hosting script, passing in this information. If you define an ``input_fn`` function definition, diff --git a/src/sagemaker/mxnet/README.rst b/src/sagemaker/mxnet/README.rst index 04cbf1f2a1..dd3c461e9d 100644 --- a/src/sagemaker/mxnet/README.rst +++ b/src/sagemaker/mxnet/README.rst @@ -403,8 +403,7 @@ Input processing When an InvokeEndpoint operation is made against an Endpoint running a SageMaker MXNet model server, the model server receives two pieces of information: - The request Content-Type, for example "application/json" -- The request data body, a byte array which is at most 5 MB (5 \* 1024 - \* 1024 bytes) in size. +- The request data body, a byte array The SageMaker MXNet model server will invoke an "input_fn" function in your training script, passing in this information. If you define an ``input_fn`` function definition, it should return an object that can be passed to ``predict_fn`` and have the following signature: diff --git a/src/sagemaker/pytorch/README.rst b/src/sagemaker/pytorch/README.rst index 3d2c69cc7b..de8c96d569 100644 --- a/src/sagemaker/pytorch/README.rst +++ b/src/sagemaker/pytorch/README.rst @@ -442,8 +442,7 @@ When an InvokeEndpoint operation is made against an Endpoint running a SageMaker the model server receives two pieces of information: - The request Content-Type, for example "application/x-npy" -- The request data body, a byte array which is at most 5 MB (5 \* 1024 - \* 1024 bytes) in size. +- The request data body, a byte array The SageMaker PyTorch model server will invoke an ``input_fn`` function in your hosting script, passing in this information. If you define an ``input_fn`` function definition,