lwiedenhoeft
lwiedenhoeft

Reputation: 118

Sagemaker Pipelines | Pass artifacts between two processing steps

I am trying to execute two processing steps (both custom scripts) in a pipeline one after the other and pass an artifact from one step to the next. Can someone show me an example of how I can do it? I have only found examples of Processing Step + Training Step.

Br,

Upvotes: 1

Views: 734

Answers (1)

Kirit Thadaka
Kirit Thadaka

Reputation: 537

You can pass artifacts between processing jobs the same way you do it between Processing and Training jobs.

Take the output of a processing job and supply it to ProcessingInput of the next processing job.

Upvotes: 1

Related Questions