[−][src]Struct rusoto_sagemaker::HyperParameterTrainingJobSummary
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 PartialEq<HyperParameterTrainingJobSummary> for HyperParameterTrainingJobSummary
[src]
fn eq(&self, other: &HyperParameterTrainingJobSummary) -> bool
[src]
fn ne(&self, other: &HyperParameterTrainingJobSummary) -> bool
[src]
impl Default for HyperParameterTrainingJobSummary
[src]
impl Clone for HyperParameterTrainingJobSummary
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self