pub struct Builder { /* private fields */ }
Expand description
A builder for ContinuousHyperParameterRange
.
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 build(self) -> ContinuousHyperParameterRange
pub fn build(self) -> ContinuousHyperParameterRange
Consumes the builder and constructs a ContinuousHyperParameterRange
.