Values.IntegerHyperParameterRangeSourceProvides the name and range of an integer-valued hyperparameter.
type nonrec t = {name : ParameterName.t option;The name of the hyperparameter.
*)minValue : IntegerMinValue.t option;The minimum allowable value for the hyperparameter.
*)maxValue : IntegerMaxValue.t option;The maximum allowable value for the hyperparameter.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of IntegerMinValue.t | `String of ParameterName.t ])
list ]