Struct StudyStoppingConfig

Source
#[non_exhaustive]
pub struct StudyStoppingConfig { pub should_stop_asap: Option<BoolValue>, pub minimum_runtime_constraint: Option<StudyTimeConstraint>, pub maximum_runtime_constraint: Option<StudyTimeConstraint>, pub min_num_trials: Option<Int32Value>, pub max_num_trials: Option<Int32Value>, pub max_num_trials_no_progress: Option<Int32Value>, pub max_duration_no_progress: Option<Duration>, /* private fields */ }
Expand description

The configuration (stopping conditions) for automated stopping of a Study. Conditions include trial budgets, time budgets, and convergence detection.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§should_stop_asap: Option<BoolValue>

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).

§minimum_runtime_constraint: Option<StudyTimeConstraint>

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.

§maximum_runtime_constraint: Option<StudyTimeConstraint>

If the specified time or duration has passed, stop the study.

§min_num_trials: Option<Int32Value>

If there are fewer than this many COMPLETED trials, do not stop the study.

§max_num_trials: Option<Int32Value>

If there are more than this many trials, stop the study.

§max_num_trials_no_progress: Option<Int32Value>

If the objective value has not improved for this many consecutive trials, stop the study.

WARNING: Effective only for single-objective studies.

§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.

Implementations§

Source§

impl StudyStoppingConfig

Source

pub fn new() -> Self

Source

pub fn set_should_stop_asap<T: Into<Option<BoolValue>>>(self, v: T) -> Self

Sets the value of should_stop_asap.

Source

pub fn set_minimum_runtime_constraint<T: Into<Option<StudyTimeConstraint>>>( self, v: T, ) -> Self

Sets the value of minimum_runtime_constraint.

Source

pub fn set_maximum_runtime_constraint<T: Into<Option<StudyTimeConstraint>>>( self, v: T, ) -> Self

Sets the value of maximum_runtime_constraint.

Source

pub fn set_min_num_trials<T: Into<Option<Int32Value>>>(self, v: T) -> Self

Sets the value of min_num_trials.

Source

pub fn set_max_num_trials<T: Into<Option<Int32Value>>>(self, v: T) -> Self

Sets the value of max_num_trials.

Source

pub fn set_max_num_trials_no_progress<T: Into<Option<Int32Value>>>( self, v: T, ) -> Self

Sets the value of max_num_trials_no_progress.

Source

pub fn set_max_duration_no_progress<T: Into<Option<Duration>>>( self, v: T, ) -> Self

Sets the value of max_duration_no_progress.

Trait Implementations§

Source§

impl Clone for StudyStoppingConfig

Source§

fn clone(&self) -> StudyStoppingConfig

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StudyStoppingConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for StudyStoppingConfig

Source§

fn default() -> StudyStoppingConfig

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for StudyStoppingConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Message for StudyStoppingConfig

Source§

fn typename() -> &'static str

The typename of this message.
Source§

impl PartialEq for StudyStoppingConfig

Source§

fn eq(&self, other: &StudyStoppingConfig) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for StudyStoppingConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for StudyStoppingConfig

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,