Reputation: 5729
From Sagemaker python SDK I have seen two API, ScriptProcessor and Processor. It seems like we can achieve the same goals using either of them, the only difference I noticed ScriptProcessor support docker command
parameter on the other hand Processor support docker entrypoint
parameter. Is there any other difference amongst them?
Upvotes: 1
Views: 833
Reputation: 7319
sagemaker.processing.ScriptProcessor
subclasses sagemaker.processing.Processor
. ScriptProcessor
can be used to write a custom processing script. Processor
can be subclassed to create a CustomProcessor
class for a more complex use case.
Upvotes: 1