Module Values.DefaultCategoricalHyperParameterRangeSource

Provides 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).

Sourcetype nonrec t = {
  1. name : ParameterName.t option;
    (*

    The name of the hyperparameter.

    *)
  2. values : CategoricalValues.t option;
    (*

    A list of the categories for the hyperparameter.

    *)
  3. isTunable : Tunable.t option;
    (*

    Whether the hyperparameter is tunable.

    *)
}
Sourceval make : ?name:??? -> ?values:??? -> ?isTunable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Tunable.t | `List of [> `String of CategoricalValue.t ] list | `String of ParameterName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t