You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
A Session object comes with the following methods which allow me to retrieve the status of training, batch transform, processing, AutoML and tuning jobs:
Describe the solution you'd like
Even though the above option works, it could become much more concise and smoother by adding a describe_endpoint() method to the Session class. This would harmonize the family of describe_[...]() functions.
The text was updated successfully, but these errors were encountered:
I see that you are requesting the ability to describe endpoints from the sagemaker.Session instance itself in order to inspect and use the results in existing workflows.
You've cited one work-around for using the lower level boto3 client, but, as cited, it is not as concise nor as consistent as if it were a first class method on sagemaker.Session instances.
We are always re-evaluating our backlog of features based on customer requests, so we appreciate the feedback on this feature.
Let us know if there is anything else we can be an assistance of.
Is your feature request related to a problem? Please describe.
A Session object comes with the following methods which allow me to retrieve the status of training, batch transform, processing, AutoML and tuning jobs:
However, if I like to get the status of an endpoint in the same workflow, I need to instantiate an extra low-level SageMaker client using boto3:
Describe the solution you'd like
Even though the above option works, it could become much more concise and smoother by adding a
describe_endpoint()
method to the Session class. This would harmonize the family ofdescribe_[...]()
functions.The text was updated successfully, but these errors were encountered: