Values.DefaultContinuousHyperParameterRangeSourceProvides the name and default range of a continuous hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
type nonrec t = {name : ParameterName.t option;The name of the hyperparameter.
*)minValue : ContinuousMinValue.t option;The minimum allowable value for the hyperparameter.
*)maxValue : ContinuousMaxValue.t option;The maximum allowable value for the hyperparameter.
*)isTunable : Tunable.t option;Whether the hyperparameter is tunable.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Tunable.t
| `Double of ContinuousMinValue.t
| `String of ParameterName.t ])
list ]