aws.sagemaker.list_training_jobs_for_hyper_parameter_tuning_job
Example SQL Queries
SELECT * FROMaws.sagemaker.list_training_jobs_for_hyper_parameter_tuning_jobWHERE"hyper_parameter_tuning_job_name" = 'VALUE';Description
Gets a list of TrainingJobSummary objects that describe the training jobs that a hyperparameter tuning job launched.
Table Definition
| Column Name | Column Data Type |
|---|---|
| hyper_parameter_tuning_job_name Required Input Column The name of the tuning job whose training jobs you want to list. | VARCHAR |
| sort_by Input Column The field to sort results by. The default is Name. If the value of this field is FinalObjectiveMetricValue, any training jobs that did not return an objective metric are not listed. | VARCHAR |
| sort_order Input Column The sort order for results. The default is Ascending. | VARCHAR |
| status_equals Input Column A filter that returns only training jobs with the specified status. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| creation_time The date and time that the training job was created. | TIMESTAMP_S |
| failure_reason The reason that the training job failed. | VARCHAR |
| final_hyper_parameter_tuning_job_objective_metric The FinalHyperParameterTuningJobObjectiveMetric object that specifies the value of the objective metric of the tuning job that launched this training job. | STRUCT( |
Show child fields
| |
| objective_status The status of the objective metric for the training job:
| VARCHAR |
| training_end_time Specifies the time when the training job ends on training instances. You are billed for the time interval between the value of TrainingStartTime and this time. For successful jobs and stopped jobs, this is the time after model artifacts are uploaded. For failed jobs, this is the time when SageMaker detects a job failure. | TIMESTAMP_S |
| training_job_arn The Amazon Resource Name (ARN) of the training job. | VARCHAR |
| training_job_definition_name The training job definition name. | VARCHAR |
| training_job_name The name of the training job. | VARCHAR |
| training_job_status The status of the training job. | VARCHAR |
| training_start_time The date and time that the training job started. | TIMESTAMP_S |
| tuned_hyper_parameters A list of the hyperparameters for which you specified ranges to search. | MAP(VARCHAR, VARCHAR) |
| tuning_job_name The HyperParameter tuning job that launched the training job. | VARCHAR |