Module Values.HyperParameterRangesSource

Specifies the hyperparameters and their ranges. Hyperparameters can be categorical, continuous, or integer-valued.

Sourcetype nonrec t = {
  1. integerHyperParameterRanges : IntegerHyperParameterRanges.t option;
    (*

    The integer-valued hyperparameters and their ranges.

    *)
  2. continuousHyperParameterRanges : ContinuousHyperParameterRanges.t option;
    (*

    The continuous hyperparameters and their ranges.

    *)
  3. categoricalHyperParameterRanges : CategoricalHyperParameterRanges.t option;
    (*

    The categorical hyperparameters and their ranges.

    *)
}
Sourceval make : ?integerHyperParameterRanges:??? -> ?continuousHyperParameterRanges:??? -> ?categoricalHyperParameterRanges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of ContinuousMinValue.t | `Integer of IntegerMinValue.t | `List of [> `String of CategoricalValue.t ] list | `String of ParameterName.t ]) list ] list ]) 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