#[non_exhaustive]pub struct DefaultContinuousHyperParameterRange {
pub name: Option<String>,
pub min_value: f64,
pub max_value: f64,
pub is_tunable: bool,
}
Expand description
Provides the name and default range of a continuous hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
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.name: Option<String>
The name of the hyperparameter.
min_value: f64
The minimum allowable value for the hyperparameter.
max_value: f64
The maximum allowable value for the hyperparameter.
is_tunable: bool
Whether the hyperparameter is tunable.
Implementations§
source§impl DefaultContinuousHyperParameterRange
impl DefaultContinuousHyperParameterRange
sourcepub fn is_tunable(&self) -> bool
pub fn is_tunable(&self) -> bool
Whether the hyperparameter is tunable.
source§impl DefaultContinuousHyperParameterRange
impl DefaultContinuousHyperParameterRange
sourcepub fn builder() -> DefaultContinuousHyperParameterRangeBuilder
pub fn builder() -> DefaultContinuousHyperParameterRangeBuilder
Creates a new builder-style object to manufacture DefaultContinuousHyperParameterRange
.
Trait Implementations§
source§impl Clone for DefaultContinuousHyperParameterRange
impl Clone for DefaultContinuousHyperParameterRange
source§fn clone(&self) -> DefaultContinuousHyperParameterRange
fn clone(&self) -> DefaultContinuousHyperParameterRange
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for DefaultContinuousHyperParameterRange
impl PartialEq for DefaultContinuousHyperParameterRange
source§fn eq(&self, other: &DefaultContinuousHyperParameterRange) -> bool
fn eq(&self, other: &DefaultContinuousHyperParameterRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DefaultContinuousHyperParameterRange
Auto Trait Implementations§
impl Freeze for DefaultContinuousHyperParameterRange
impl RefUnwindSafe for DefaultContinuousHyperParameterRange
impl Send for DefaultContinuousHyperParameterRange
impl Sync for DefaultContinuousHyperParameterRange
impl Unpin for DefaultContinuousHyperParameterRange
impl UnwindSafe for DefaultContinuousHyperParameterRange
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.