Values.DefaultIntegerHyperParameterRangeSourceProvides the name and default range of a integer-valued 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 : IntegerMinValue.t option;The minimum allowable value for the hyperparameter.
*)maxValue : IntegerMaxValue.t option;The maximum allowable value for the hyperparameter.
*)isTunable : Tunable.t option;Indicates whether the hyperparameter is tunable.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Tunable.t
| `Integer of IntegerMinValue.t
| `String of ParameterName.t ])
list ]