#[non_exhaustive]pub struct DefaultHyperParameterRanges {
pub integer_hyper_parameter_ranges: Option<Vec<DefaultIntegerHyperParameterRange>>,
pub continuous_hyper_parameter_ranges: Option<Vec<DefaultContinuousHyperParameterRange>>,
pub categorical_hyper_parameter_ranges: Option<Vec<DefaultCategoricalHyperParameterRange>>,
}Expand description
Specifies the hyperparameters and their default ranges. Hyperparameters can be categorical, continuous, or integer-valued.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.integer_hyper_parameter_ranges: Option<Vec<DefaultIntegerHyperParameterRange>>The integer-valued hyperparameters and their default ranges.
continuous_hyper_parameter_ranges: Option<Vec<DefaultContinuousHyperParameterRange>>The continuous hyperparameters and their default ranges.
categorical_hyper_parameter_ranges: Option<Vec<DefaultCategoricalHyperParameterRange>>The categorical hyperparameters and their default ranges.
Implementations§
source§impl DefaultHyperParameterRanges
impl DefaultHyperParameterRanges
sourcepub fn integer_hyper_parameter_ranges(
&self
) -> &[DefaultIntegerHyperParameterRange]
pub fn integer_hyper_parameter_ranges( &self ) -> &[DefaultIntegerHyperParameterRange]
The integer-valued hyperparameters and their default ranges.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .integer_hyper_parameter_ranges.is_none().
sourcepub fn continuous_hyper_parameter_ranges(
&self
) -> &[DefaultContinuousHyperParameterRange]
pub fn continuous_hyper_parameter_ranges( &self ) -> &[DefaultContinuousHyperParameterRange]
The continuous hyperparameters and their default ranges.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .continuous_hyper_parameter_ranges.is_none().
sourcepub fn categorical_hyper_parameter_ranges(
&self
) -> &[DefaultCategoricalHyperParameterRange]
pub fn categorical_hyper_parameter_ranges( &self ) -> &[DefaultCategoricalHyperParameterRange]
The categorical hyperparameters and their default ranges.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .categorical_hyper_parameter_ranges.is_none().
source§impl DefaultHyperParameterRanges
impl DefaultHyperParameterRanges
sourcepub fn builder() -> DefaultHyperParameterRangesBuilder
pub fn builder() -> DefaultHyperParameterRangesBuilder
Creates a new builder-style object to manufacture DefaultHyperParameterRanges.
Trait Implementations§
source§impl Clone for DefaultHyperParameterRanges
impl Clone for DefaultHyperParameterRanges
source§fn clone(&self) -> DefaultHyperParameterRanges
fn clone(&self) -> DefaultHyperParameterRanges
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DefaultHyperParameterRanges
impl Debug for DefaultHyperParameterRanges
source§impl PartialEq for DefaultHyperParameterRanges
impl PartialEq for DefaultHyperParameterRanges
source§fn eq(&self, other: &DefaultHyperParameterRanges) -> bool
fn eq(&self, other: &DefaultHyperParameterRanges) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DefaultHyperParameterRanges
Auto Trait Implementations§
impl Freeze for DefaultHyperParameterRanges
impl RefUnwindSafe for DefaultHyperParameterRanges
impl Send for DefaultHyperParameterRanges
impl Sync for DefaultHyperParameterRanges
impl Unpin for DefaultHyperParameterRanges
impl UnwindSafe for DefaultHyperParameterRanges
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> 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