Values.ContinuousHyperParameterRangeSourceProvides the name and range of a continuous hyperparameter.
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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of ContinuousMinValue.t | `String of ParameterName.t ])
list ]