#[non_exhaustive]pub struct AutoMlJobCompletionCriteria { /* private fields */ }
Expand description
How long a job is allowed to run, or how many candidates a job is allowed to generate.
Implementations§
source§impl AutoMlJobCompletionCriteria
impl AutoMlJobCompletionCriteria
sourcepub fn max_candidates(&self) -> Option<i32>
pub fn max_candidates(&self) -> Option<i32>
The maximum number of times a training job is allowed to run.
sourcepub fn max_runtime_per_training_job_in_seconds(&self) -> Option<i32>
pub fn max_runtime_per_training_job_in_seconds(&self) -> Option<i32>
The maximum time, in seconds, that each training job executed inside hyperparameter tuning is allowed to run as part of a hyperparameter tuning job. For more information, see the used by the action.
sourcepub fn max_auto_ml_job_runtime_in_seconds(&self) -> Option<i32>
pub fn max_auto_ml_job_runtime_in_seconds(&self) -> Option<i32>
The maximum runtime, in seconds, an AutoML job has to complete.
If an AutoML job exceeds the maximum runtime, the job is stopped automatically and its processing is ended gracefully. The AutoML job identifies the best model whose training was completed and marks it as the best-performing model. Any unfinished steps of the job, such as automatic one-click Autopilot model deployment, will not be completed.
source§impl AutoMlJobCompletionCriteria
impl AutoMlJobCompletionCriteria
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoMlJobCompletionCriteria
.
Trait Implementations§
source§impl Clone for AutoMlJobCompletionCriteria
impl Clone for AutoMlJobCompletionCriteria
source§fn clone(&self) -> AutoMlJobCompletionCriteria
fn clone(&self) -> AutoMlJobCompletionCriteria
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutoMlJobCompletionCriteria
impl Debug for AutoMlJobCompletionCriteria
source§impl PartialEq<AutoMlJobCompletionCriteria> for AutoMlJobCompletionCriteria
impl PartialEq<AutoMlJobCompletionCriteria> for AutoMlJobCompletionCriteria
source§fn eq(&self, other: &AutoMlJobCompletionCriteria) -> bool
fn eq(&self, other: &AutoMlJobCompletionCriteria) -> bool
self
and other
values to be equal, and is used
by ==
.