pub struct GoogleCloudAiplatformV1StudySpecStudyStoppingConfig {
pub should_stop_asap: Option<bool>,
pub min_num_trials: Option<i32>,
pub minimum_runtime_constraint: Option<GoogleCloudAiplatformV1StudyTimeConstraint>,
pub max_duration_no_progress: Option<Duration>,
pub max_num_trials_no_progress: Option<i32>,
pub max_num_trials: Option<i32>,
pub maximum_runtime_constraint: Option<GoogleCloudAiplatformV1StudyTimeConstraint>,
}Expand description
The configuration (stopping conditions) for automated stopping of a Study. Conditions include trial budgets, time budgets, and convergence detection.
This type is not used in any activity, and only used as part of another schema.
Fields§
§should_stop_asap: Option<bool>If true, a Study enters STOPPING_ASAP whenever it would normally enters STOPPING state. The bottom line is: set to true if you want to interrupt on-going evaluations of Trials as soon as the study stopping condition is met. (Please see Study.State documentation for the source of truth).
min_num_trials: Option<i32>If there are fewer than this many COMPLETED trials, do not stop the study.
minimum_runtime_constraint: Option<GoogleCloudAiplatformV1StudyTimeConstraint>Each “stopping rule” in this proto specifies an “if” condition. Before Vizier would generate a new suggestion, it first checks each specified stopping rule, from top to bottom in this list. Note that the first few rules (e.g. minimum_runtime_constraint, min_num_trials) will prevent other stopping rules from being evaluated until they are met. For example, setting min_num_trials=5 and always_stop_after= 1 hour means that the Study will ONLY stop after it has 5 COMPLETED trials, even if more than an hour has passed since its creation. It follows the first applicable rule (whose “if” condition is satisfied) to make a stopping decision. If none of the specified rules are applicable, then Vizier decides that the study should not stop. If Vizier decides that the study should stop, the study enters STOPPING state (or STOPPING_ASAP if should_stop_asap = true). IMPORTANT: The automatic study state transition happens precisely as described above; that is, deleting trials or updating StudyConfig NEVER automatically moves the study state back to ACTIVE. If you want to resume a Study that was stopped, 1) change the stopping conditions if necessary, 2) activate the study, and then 3) ask for suggestions. If the specified time or duration has not passed, do not stop the study.
max_duration_no_progress: Option<Duration>If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
max_num_trials_no_progress: Option<i32>If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
max_num_trials: Option<i32>If there are more than this many trials, stop the study.
maximum_runtime_constraint: Option<GoogleCloudAiplatformV1StudyTimeConstraint>If the specified time or duration has passed, stop the study.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl Clone for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
Source§fn clone(&self) -> GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
fn clone(&self) -> GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl Default for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
Source§fn default() -> GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
fn default() -> GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl RefUnwindSafe for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl Send for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl Sync for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl Unpin for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
impl UnwindSafe for GoogleCloudAiplatformV1StudySpecStudyStoppingConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more