how can I preprocess input data before making predictions in sagemaker?

后端 未结 4 1856
暖寄归人
暖寄归人 2021-01-18 07:20

I am calling a Sagemaker endpoint using java Sagemaker SDK. The data that I am sending needs little cleaning before the model can use it for prediction. How can I do that in

4条回答
  •  [愿得一人]
    2021-01-18 07:46

    There is now a new feature in SageMaker, called inference pipelines. This lets you build a linear sequence of two to five containers that pre/post-process requests. The whole pipeline is then deployed on a single endpoint.

    https://docs.aws.amazon.com/sagemaker/latest/dg/inference-pipelines.html

提交回复
热议问题