Module Values.IntegerHyperParameterRangeSource

Provides the name and range of an integer-valued hyperparameter.

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

    The name of the hyperparameter.

    *)
  2. minValue : IntegerMinValue.t option;
    (*

    The minimum allowable value for the hyperparameter.

    *)
  3. maxValue : IntegerMaxValue.t option;
    (*

    The maximum allowable value for the hyperparameter.

    *)
}
Sourceval make : ?name:??? -> ?minValue:??? -> ?maxValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerMinValue.t | `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