pub struct Builder { /* private fields */ }
Expand description
A builder for DefaultContinuousHyperParameterRange
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_min_value(self, input: Option<f64>) -> Self
pub fn set_min_value(self, input: Option<f64>) -> Self
The minimum allowable value for the hyperparameter.
sourcepub fn set_max_value(self, input: Option<f64>) -> Self
pub fn set_max_value(self, input: Option<f64>) -> Self
The maximum allowable value for the hyperparameter.
sourcepub fn is_tunable(self, input: bool) -> Self
pub fn is_tunable(self, input: bool) -> Self
Whether the hyperparameter is tunable.
sourcepub fn set_is_tunable(self, input: Option<bool>) -> Self
pub fn set_is_tunable(self, input: Option<bool>) -> Self
Whether the hyperparameter is tunable.
sourcepub fn build(self) -> DefaultContinuousHyperParameterRange
pub fn build(self) -> DefaultContinuousHyperParameterRange
Consumes the builder and constructs a DefaultContinuousHyperParameterRange
.