#[non_exhaustive]pub struct DescribeHyperParameterTuningJobOutput { /* private fields */ }
Implementations§
source§impl DescribeHyperParameterTuningJobOutput
impl DescribeHyperParameterTuningJobOutput
sourcepub fn hyper_parameter_tuning_job_name(&self) -> Option<&str>
pub fn hyper_parameter_tuning_job_name(&self) -> Option<&str>
The name of the tuning job.
sourcepub fn hyper_parameter_tuning_job_arn(&self) -> Option<&str>
pub fn hyper_parameter_tuning_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the tuning job.
sourcepub fn hyper_parameter_tuning_job_config(
&self
) -> Option<&HyperParameterTuningJobConfig>
pub fn hyper_parameter_tuning_job_config(
&self
) -> Option<&HyperParameterTuningJobConfig>
The HyperParameterTuningJobConfig
object that specifies the configuration of the tuning job.
sourcepub fn training_job_definition(
&self
) -> Option<&HyperParameterTrainingJobDefinition>
pub fn training_job_definition(
&self
) -> Option<&HyperParameterTrainingJobDefinition>
The HyperParameterTrainingJobDefinition
object that specifies the definition of the training jobs that this tuning job launches.
sourcepub fn training_job_definitions(
&self
) -> Option<&[HyperParameterTrainingJobDefinition]>
pub fn training_job_definitions(
&self
) -> Option<&[HyperParameterTrainingJobDefinition]>
A list of the HyperParameterTrainingJobDefinition
objects launched for this tuning job.
sourcepub fn hyper_parameter_tuning_job_status(
&self
) -> Option<&HyperParameterTuningJobStatus>
pub fn hyper_parameter_tuning_job_status(
&self
) -> Option<&HyperParameterTuningJobStatus>
The status of the tuning job: InProgress, Completed, Failed, Stopping, or Stopped.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time that the tuning job started.
sourcepub fn hyper_parameter_tuning_end_time(&self) -> Option<&DateTime>
pub fn hyper_parameter_tuning_end_time(&self) -> Option<&DateTime>
The date and time that the tuning job ended.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time that the status of the tuning job was modified.
sourcepub fn training_job_status_counters(&self) -> Option<&TrainingJobStatusCounters>
pub fn training_job_status_counters(&self) -> Option<&TrainingJobStatusCounters>
The TrainingJobStatusCounters
object that specifies the number of training jobs, categorized by status, that this tuning job launched.
sourcepub fn objective_status_counters(&self) -> Option<&ObjectiveStatusCounters>
pub fn objective_status_counters(&self) -> Option<&ObjectiveStatusCounters>
The ObjectiveStatusCounters
object that specifies the number of training jobs, categorized by the status of their final objective metric, that this tuning job launched.
sourcepub fn best_training_job(&self) -> Option<&HyperParameterTrainingJobSummary>
pub fn best_training_job(&self) -> Option<&HyperParameterTrainingJobSummary>
A TrainingJobSummary
object that describes the training job that completed with the best current HyperParameterTuningJobObjective
.
sourcepub fn overall_best_training_job(
&self
) -> Option<&HyperParameterTrainingJobSummary>
pub fn overall_best_training_job(
&self
) -> Option<&HyperParameterTrainingJobSummary>
If the hyperparameter tuning job is an warm start tuning job with a WarmStartType
of IDENTICAL_DATA_AND_ALGORITHM
, this is the TrainingJobSummary
for the training job with the best objective metric value of all training jobs launched by this tuning job and all parent jobs specified for the warm start tuning job.
sourcepub fn warm_start_config(
&self
) -> Option<&HyperParameterTuningJobWarmStartConfig>
pub fn warm_start_config(
&self
) -> Option<&HyperParameterTuningJobWarmStartConfig>
The configuration for starting the hyperparameter parameter tuning job using one or more previous tuning jobs as a starting point. The results of previous tuning jobs are used to inform which combinations of hyperparameters to search over in the new tuning job.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If the tuning job failed, the reason it failed.
source§impl DescribeHyperParameterTuningJobOutput
impl DescribeHyperParameterTuningJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeHyperParameterTuningJobOutput
.
Trait Implementations§
source§impl Clone for DescribeHyperParameterTuningJobOutput
impl Clone for DescribeHyperParameterTuningJobOutput
source§fn clone(&self) -> DescribeHyperParameterTuningJobOutput
fn clone(&self) -> DescribeHyperParameterTuningJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<DescribeHyperParameterTuningJobOutput> for DescribeHyperParameterTuningJobOutput
impl PartialEq<DescribeHyperParameterTuningJobOutput> for DescribeHyperParameterTuningJobOutput
source§fn eq(&self, other: &DescribeHyperParameterTuningJobOutput) -> bool
fn eq(&self, other: &DescribeHyperParameterTuningJobOutput) -> bool
self
and other
values to be equal, and is used
by ==
.