AWS SageMaker, describe a specific training job using python SDK

With a sagemaker.session.Session instance, you can describe training jobs:

import sagemaker


sagemaker_session = sagemaker.session.Session()
sagemaker_session.describe_training_job("Job...")

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top