Values.DefaultCategoricalHyperParameterRangeSourceProvides the name and default range of a categorical 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.
*)values : CategoricalValues.t option;A list of the categories for the hyperparameter.
*)isTunable : Tunable.t option;Whether the hyperparameter is tunable.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Tunable.t
| `List of [> `String of CategoricalValue.t ] list
| `String of ParameterName.t ])
list ]