#[non_exhaustive]pub struct HyperParameterTuningJobSearchEntity { /* private fields */ }
Expand description
An entity returned by the SearchRecord API containing the properties of a hyperparameter tuning job.
Implementations§
source§impl HyperParameterTuningJobSearchEntity
impl HyperParameterTuningJobSearchEntity
sourcepub fn hyper_parameter_tuning_job_name(&self) -> Option<&str>
pub fn hyper_parameter_tuning_job_name(&self) -> Option<&str>
The name of a hyperparameter 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 a hyperparameter tuning job.
sourcepub fn hyper_parameter_tuning_job_config(
&self
) -> Option<&HyperParameterTuningJobConfig>
pub fn hyper_parameter_tuning_job_config(
&self
) -> Option<&HyperParameterTuningJobConfig>
Configures a hyperparameter tuning job.
sourcepub fn training_job_definition(
&self
) -> Option<&HyperParameterTrainingJobDefinition>
pub fn training_job_definition(
&self
) -> Option<&HyperParameterTrainingJobDefinition>
Defines the training jobs launched by a hyperparameter tuning job.
sourcepub fn training_job_definitions(
&self
) -> Option<&[HyperParameterTrainingJobDefinition]>
pub fn training_job_definitions(
&self
) -> Option<&[HyperParameterTrainingJobDefinition]>
The job definitions included in a hyperparameter 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 a hyperparameter tuning job.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that a hyperparameter tuning job was created.
sourcepub fn hyper_parameter_tuning_end_time(&self) -> Option<&DateTime>
pub fn hyper_parameter_tuning_end_time(&self) -> Option<&DateTime>
The time that a hyperparameter tuning job ended.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The time that a hyperparameter tuning job was last modified.
sourcepub fn training_job_status_counters(&self) -> Option<&TrainingJobStatusCounters>
pub fn training_job_status_counters(&self) -> Option<&TrainingJobStatusCounters>
The numbers of training jobs launched by a hyperparameter tuning job, categorized by status.
sourcepub fn objective_status_counters(&self) -> Option<&ObjectiveStatusCounters>
pub fn objective_status_counters(&self) -> Option<&ObjectiveStatusCounters>
Specifies the number of training jobs that this hyperparameter tuning job launched, categorized by the status of their objective metric. The objective metric status shows whether the final objective metric for the training job has been evaluated by the tuning job and used in the hyperparameter tuning process.
sourcepub fn best_training_job(&self) -> Option<&HyperParameterTrainingJobSummary>
pub fn best_training_job(&self) -> Option<&HyperParameterTrainingJobSummary>
The container for the summary information about a training job.
sourcepub fn overall_best_training_job(
&self
) -> Option<&HyperParameterTrainingJobSummary>
pub fn overall_best_training_job(
&self
) -> Option<&HyperParameterTrainingJobSummary>
The container for the summary information about a training job.
sourcepub fn warm_start_config(
&self
) -> Option<&HyperParameterTuningJobWarmStartConfig>
pub fn warm_start_config(
&self
) -> Option<&HyperParameterTuningJobWarmStartConfig>
Specifies the configuration for a hyperparameter tuning job that uses one or more previous hyperparameter 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.
All training jobs launched by the new hyperparameter tuning job are evaluated by using the objective metric, and the training job that performs the best is compared to the best training jobs from the parent tuning jobs. From these, the training job that performs the best as measured by the objective metric is returned as the overall best training job.
All training jobs launched by parent hyperparameter tuning jobs and the new hyperparameter tuning jobs count against the limit of training jobs for the tuning job.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The error that was created when a hyperparameter tuning job failed.
The tags associated with a hyperparameter tuning job. For more information see Tagging Amazon Web Services resources.
source§impl HyperParameterTuningJobSearchEntity
impl HyperParameterTuningJobSearchEntity
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HyperParameterTuningJobSearchEntity
.
Trait Implementations§
source§impl Clone for HyperParameterTuningJobSearchEntity
impl Clone for HyperParameterTuningJobSearchEntity
source§fn clone(&self) -> HyperParameterTuningJobSearchEntity
fn clone(&self) -> HyperParameterTuningJobSearchEntity
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<HyperParameterTuningJobSearchEntity> for HyperParameterTuningJobSearchEntity
impl PartialEq<HyperParameterTuningJobSearchEntity> for HyperParameterTuningJobSearchEntity
source§fn eq(&self, other: &HyperParameterTuningJobSearchEntity) -> bool
fn eq(&self, other: &HyperParameterTuningJobSearchEntity) -> bool
self
and other
values to be equal, and is used
by ==
.