#[non_exhaustive]pub struct DefaultIntegerHyperParameterRange {
pub name: Option<String>,
pub min_value: i32,
pub max_value: i32,
pub is_tunable: bool,
}
Expand description
Provides the name and default range of a integer-valued 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: i32
The minimum allowable value for the hyperparameter.
max_value: i32
The maximum allowable value for the hyperparameter.
is_tunable: bool
Indicates whether the hyperparameter is tunable.
Implementations§
source§impl DefaultIntegerHyperParameterRange
impl DefaultIntegerHyperParameterRange
sourcepub fn is_tunable(&self) -> bool
pub fn is_tunable(&self) -> bool
Indicates whether the hyperparameter is tunable.
source§impl DefaultIntegerHyperParameterRange
impl DefaultIntegerHyperParameterRange
sourcepub fn builder() -> DefaultIntegerHyperParameterRangeBuilder
pub fn builder() -> DefaultIntegerHyperParameterRangeBuilder
Creates a new builder-style object to manufacture DefaultIntegerHyperParameterRange
.
Trait Implementations§
source§impl Clone for DefaultIntegerHyperParameterRange
impl Clone for DefaultIntegerHyperParameterRange
source§fn clone(&self) -> DefaultIntegerHyperParameterRange
fn clone(&self) -> DefaultIntegerHyperParameterRange
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 DefaultIntegerHyperParameterRange
impl PartialEq for DefaultIntegerHyperParameterRange
source§fn eq(&self, other: &DefaultIntegerHyperParameterRange) -> bool
fn eq(&self, other: &DefaultIntegerHyperParameterRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DefaultIntegerHyperParameterRange
Auto Trait Implementations§
impl Freeze for DefaultIntegerHyperParameterRange
impl RefUnwindSafe for DefaultIntegerHyperParameterRange
impl Send for DefaultIntegerHyperParameterRange
impl Sync for DefaultIntegerHyperParameterRange
impl Unpin for DefaultIntegerHyperParameterRange
impl UnwindSafe for DefaultIntegerHyperParameterRange
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.