Skip to content

remove request size limit in doc comments #433

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
Oct 19, 2018
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
3 changes: 1 addition & 2 deletions src/sagemaker/chainer/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 1 addition & 2 deletions src/sagemaker/mxnet/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
3 changes: 1 addition & 2 deletions src/sagemaker/pytorch/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down