How can we access a property or pipeline variable as a string? #3343
Unanswered
Sekhar-jami
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to get the s3 uri of the trained model from the trainingstep in a sagemaker pipeline execution.
I can see that the uri is stored in
step_train.properties.ModelArtifacts.S3ModelArtifacts
(which is asagemaker.workflow.properties.Properties
object) but am unable to retrieve it as a string. Using the to_string() function returns aJoin
object which sagemaker converts to a string at runtime, but I need to be able to access it after the pipeline execution is completed as well.Is there any way to achieve the above?
Beta Was this translation helpful? Give feedback.
All reactions