Class DefaultSerializer (1.37.0)

DefaultSerializer()

Default serializer for serialization and deserialization for prediction.

Methods

deserialize

deserialize(data: typing.Any, content_type: typing.Optional[str]) -> typing.Any

Deserializes the request data. Invoked before predict.

Parameters
Name Description
data Any

Required. The request data sent to the application.

content_type str

Optional. The specified content type of the request.

Exceptions
Type Description
HTTPException If Json deserialization failed or the specified content type is not supported.

serialize

serialize(prediction: typing.Any, accept: typing.Optional[str]) -> typing.Any

Serializes the prediction results. Invoked after predict.

Parameters
Name Description
prediction Any

Required. The generated prediction to be sent back to clients.

accept str

Optional. The specified content type of the response.

Exceptions
Type Description
HTTPException If Json serialization failed or the specified accept is not supported.