Open
Description
If you create a new SageMakerModel
instance (say, with fromModelS3Path()
), you can pass in your own sagemakerClient
. However, when you go to use the model after it's been created, transform()
does not use that client to send prediction requests. It appears to hardcode a AmazonSageMakerRuntimeClientBuilder.defaultClient
instead in RequestBatchIterator
.
Pardon my ignorance, but is there a reason that it can't just pass the sagemakerClient
through?