Module Values_0.ParameterRangeSource

Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.

Sourcetype nonrec t = {
  1. integerParameterRangeSpecification : IntegerParameterRangeSpecification.t option;
    (*

    A IntegerParameterRangeSpecification object that defines the possible values for an integer hyperparameter.

    *)
  2. continuousParameterRangeSpecification : ContinuousParameterRangeSpecification.t option;
    (*

    A ContinuousParameterRangeSpecification object that defines the possible values for a continuous hyperparameter.

    *)
  3. categoricalParameterRangeSpecification : CategoricalParameterRangeSpecification.t option;
    (*

    A CategoricalParameterRangeSpecification object that defines the possible values for a categorical hyperparameter.

    *)
}
Sourceval make : ?integerParameterRangeSpecification:??? -> ?continuousParameterRangeSpecification:??? -> ?categoricalParameterRangeSpecification:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of ParameterValue.t ] list | `String of ParameterValue.t ]) 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