[][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:

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 PartialEq<HyperParameterTrainingJobSummary> for HyperParameterTrainingJobSummary[src]

impl Default for HyperParameterTrainingJobSummary[src]

impl Clone for HyperParameterTrainingJobSummary[src]

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

Performs copy-assignment from source. Read more

impl Debug for HyperParameterTrainingJobSummary[src]

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

Auto Trait Implementations

impl Send for HyperParameterTrainingJobSummary

impl Sync for HyperParameterTrainingJobSummary

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
    T: From<U>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

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

The type returned in the event of a conversion error.

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

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