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 SageMaker Session object comes with the following methods which allow me to retrieve the status of training, batch transform, processing and AutoML jobs: describe_training_job(), describe_transform_job(), describe_processing_job(), describe_auto_ml_job(). Examples:
Describe the solution you'd like
Even though the above options work, it could become much more concise and smoother by adding a describe_hyper_parameter_tuning_job() method to the SageMaker Session class. This would harmonize the family of describe_[...]_job() functions.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
A SageMaker Session object comes with the following methods which allow me to retrieve the status of training, batch transform, processing and AutoML jobs:
describe_training_job()
,describe_transform_job()
,describe_processing_job()
,describe_auto_ml_job()
. Examples:However, if I like to get the status of a hyperparameter tuning job in the same workflow, I need to use one of the following two options:
Option 1: Use the following two lines of code
Option 2: Create an extra low-level SageMaker client using boto3:
Describe the solution you'd like
Even though the above options work, it could become much more concise and smoother by adding a
describe_hyper_parameter_tuning_job()
method to the SageMaker Session class. This would harmonize the family ofdescribe_[...]_job()
functions.The text was updated successfully, but these errors were encountered: