#[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 ==
.