Module Values.DefaultHyperParameterRangesSource

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

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

    The integer-valued hyperparameters and their default ranges.

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

    The continuous hyperparameters and their default ranges.

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

    The categorical hyperparameters and their default ranges.

    *)
}
Sourceval make : ?integerHyperParameterRanges:??? -> ?continuousHyperParameterRanges:??? -> ?categoricalHyperParameterRanges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Tunable.t | `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