pub struct Builder { /* private fields */ }
Expand description
A builder for DefaultHyperParameterRanges
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn integer_hyper_parameter_ranges(
self,
input: DefaultIntegerHyperParameterRange
) -> Self
pub fn integer_hyper_parameter_ranges(
self,
input: DefaultIntegerHyperParameterRange
) -> Self
Appends an item to integer_hyper_parameter_ranges
.
To override the contents of this collection use set_integer_hyper_parameter_ranges
.
The integer-valued hyperparameters and their default ranges.
sourcepub fn set_integer_hyper_parameter_ranges(
self,
input: Option<Vec<DefaultIntegerHyperParameterRange>>
) -> Self
pub fn set_integer_hyper_parameter_ranges(
self,
input: Option<Vec<DefaultIntegerHyperParameterRange>>
) -> Self
The integer-valued hyperparameters and their default ranges.
sourcepub fn continuous_hyper_parameter_ranges(
self,
input: DefaultContinuousHyperParameterRange
) -> Self
pub fn continuous_hyper_parameter_ranges(
self,
input: DefaultContinuousHyperParameterRange
) -> Self
Appends an item to continuous_hyper_parameter_ranges
.
To override the contents of this collection use set_continuous_hyper_parameter_ranges
.
The continuous hyperparameters and their default ranges.
sourcepub fn set_continuous_hyper_parameter_ranges(
self,
input: Option<Vec<DefaultContinuousHyperParameterRange>>
) -> Self
pub fn set_continuous_hyper_parameter_ranges(
self,
input: Option<Vec<DefaultContinuousHyperParameterRange>>
) -> Self
The continuous hyperparameters and their default ranges.
sourcepub fn categorical_hyper_parameter_ranges(
self,
input: DefaultCategoricalHyperParameterRange
) -> Self
pub fn categorical_hyper_parameter_ranges(
self,
input: DefaultCategoricalHyperParameterRange
) -> Self
Appends an item to categorical_hyper_parameter_ranges
.
To override the contents of this collection use set_categorical_hyper_parameter_ranges
.
The categorical hyperparameters and their default ranges.
sourcepub fn set_categorical_hyper_parameter_ranges(
self,
input: Option<Vec<DefaultCategoricalHyperParameterRange>>
) -> Self
pub fn set_categorical_hyper_parameter_ranges(
self,
input: Option<Vec<DefaultCategoricalHyperParameterRange>>
) -> Self
The categorical hyperparameters and their default ranges.
sourcepub fn build(self) -> DefaultHyperParameterRanges
pub fn build(self) -> DefaultHyperParameterRanges
Consumes the builder and constructs a DefaultHyperParameterRanges
.