Struct aws_sdk_sagemaker::model::HyperParameterTrainingJobSummary [−][src]
#[non_exhaustive]pub struct HyperParameterTrainingJobSummary {
pub training_job_definition_name: Option<String>,
pub training_job_name: Option<String>,
pub training_job_arn: Option<String>,
pub tuning_job_name: Option<String>,
pub creation_time: Option<DateTime>,
pub training_start_time: Option<DateTime>,
pub training_end_time: Option<DateTime>,
pub training_job_status: Option<TrainingJobStatus>,
pub tuned_hyper_parameters: Option<HashMap<String, String>>,
pub failure_reason: Option<String>,
pub final_hyper_parameter_tuning_job_objective_metric: Option<FinalHyperParameterTuningJobObjectiveMetric>,
pub objective_status: Option<ObjectiveStatus>,
}
Expand description
Specifies summary information about a training job.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.training_job_definition_name: Option<String>
The training job definition name.
training_job_name: Option<String>
The name of the training job.
training_job_arn: Option<String>
The Amazon Resource Name (ARN) of the training job.
tuning_job_name: Option<String>
The HyperParameter tuning job that launched the training job.
creation_time: Option<DateTime>
The date and time that the training job was created.
training_start_time: Option<DateTime>
The date and time that the training job started.
training_end_time: Option<DateTime>
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 Amazon SageMaker detects a job failure.
training_job_status: Option<TrainingJobStatus>
The status of the training job.
tuned_hyper_parameters: Option<HashMap<String, String>>
A list of the hyperparameters for which you specified ranges to search.
failure_reason: Option<String>
The reason that the training job failed.
final_hyper_parameter_tuning_job_objective_metric: Option<FinalHyperParameterTuningJobObjectiveMetric>
The FinalHyperParameterTuningJobObjectiveMetric object that specifies the value of the objective metric of the tuning job that launched this training job.
objective_status: Option<ObjectiveStatus>
The status of the objective metric for the training job:
-
Succeeded: The final objective metric for the training job was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
-
Pending: The training job is in progress and evaluation of its final objective metric is pending.
-
Failed: The final objective metric for the training job was not evaluated, and was not used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.
Implementations
The training job definition name.
The name of the training job.
The Amazon Resource Name (ARN) of the training job.
The HyperParameter tuning job that launched the training job.
The date and time that the training job was created.
The date and time that the training job started.
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 Amazon SageMaker detects a job failure.
The status of the training job.
A list of the hyperparameters for which you specified ranges to search.
The reason that the training job failed.
The FinalHyperParameterTuningJobObjectiveMetric object that specifies the value of the objective metric of the tuning job that launched this training job.
The status of the objective metric for the training job:
-
Succeeded: The final objective metric for the training job was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
-
Pending: The training job is in progress and evaluation of its final objective metric is pending.
-
Failed: The final objective metric for the training job was not evaluated, and was not used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.
Creates a new builder-style object to manufacture HyperParameterTrainingJobSummary
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for HyperParameterTrainingJobSummary
impl Sync for HyperParameterTrainingJobSummary
impl Unpin for HyperParameterTrainingJobSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more