I have a sagemaker.workflow.pipeline.Pipeline which contains multiple sagemaker.workflow.steps.ProcessingStep and each ProcessingStep contains sagemaker.processing.ScriptProcessor.
The current pipeline graph look like the below shown image. It will take data from multiple sources from S3, process it and create a final dataset using the data from previous steps.
As the Pipeline object doesn't support .deploy method, how to deploy this pipeline?
While inference/scoring, When we receive a raw data(single row for each source), how to trigger the pipeline?
or Sagemaker Pipeline is designed for only data processing and model training on huge/batch data? Not for the inference with the single data point?
