logo
pub struct HyperParameterTrainingJobSummary {
    pub creation_time: f64,
    pub failure_reason: Option<String>,
    pub final_hyper_parameter_tuning_job_objective_metric: Option<FinalHyperParameterTuningJobObjectiveMetric>,
    pub objective_status: Option<String>,
    pub training_end_time: Option<f64>,
    pub training_job_arn: String,
    pub training_job_definition_name: Option<String>,
    pub training_job_name: String,
    pub training_job_status: String,
    pub training_start_time: Option<f64>,
    pub tuned_hyper_parameters: HashMap<String, String>,
    pub tuning_job_name: Option<String>,
}
Expand description

Specifies summary information about a training job.

Fields

creation_time: f64

The date and time that the training job was created.

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<String>

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.

training_end_time: Option<f64>

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_arn: String

The Amazon Resource Name (ARN) of the training job.

training_job_definition_name: Option<String>

The training job definition name.

training_job_name: String

The name of the training job.

training_job_status: String

The status of the training job.

training_start_time: Option<f64>

The date and time that the training job started.

tuned_hyper_parameters: HashMap<String, String>

A list of the hyperparameters for which you specified ranges to search.

tuning_job_name: Option<String>

The HyperParameter tuning job that launched the training job.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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