[][src]Struct rusoto_sagemaker::HyperParameterTrainingJobSummary

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_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>,
}

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

impl Clone for HyperParameterTrainingJobSummary[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<HyperParameterTrainingJobSummary> for HyperParameterTrainingJobSummary[src]

impl Default for HyperParameterTrainingJobSummary[src]

impl Debug for HyperParameterTrainingJobSummary[src]

impl<'de> Deserialize<'de> for HyperParameterTrainingJobSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self