Skip to content

Commit c4053ff

Browse files
jesterhazynadiaya
authored andcommitted
remove request size limit in doc comments (#433)
1 parent 08bacf6 commit c4053ff

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/sagemaker/chainer/README.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,7 @@ When an InvokeEndpoint operation is made against an Endpoint running a SageMaker
409409
the model server receives two pieces of information:
410410

411411
- The request Content-Type, for example "application/x-npy"
412-
- The request data body, a byte array which is at most 5 MB (5 \* 1024
413-
\* 1024 bytes) in size.
412+
- The request data body, a byte array
414413

415414
The SageMaker Chainer model server will invoke an "input_fn" function in your hosting script,
416415
passing in this information. If you define an ``input_fn`` function definition,

src/sagemaker/mxnet/README.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,7 @@ Input processing
403403
When an InvokeEndpoint operation is made against an Endpoint running a SageMaker MXNet model server, the model server receives two pieces of information:
404404

405405
- The request Content-Type, for example "application/json"
406-
- The request data body, a byte array which is at most 5 MB (5 \* 1024
407-
\* 1024 bytes) in size.
406+
- The request data body, a byte array
408407

409408
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:
410409

src/sagemaker/pytorch/README.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -442,8 +442,7 @@ When an InvokeEndpoint operation is made against an Endpoint running a SageMaker
442442
the model server receives two pieces of information:
443443

444444
- The request Content-Type, for example "application/x-npy"
445-
- The request data body, a byte array which is at most 5 MB (5 \* 1024
446-
\* 1024 bytes) in size.
445+
- The request data body, a byte array
447446

448447
The SageMaker PyTorch model server will invoke an ``input_fn`` function in your hosting script,
449448
passing in this information. If you define an ``input_fn`` function definition,

0 commit comments

Comments
 (0)