Module Values.DefaultIntegerHyperParameterRangeSource

Provides the name and default range of a integer-valued 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. minValue : IntegerMinValue.t option;
    (*

    The minimum allowable value for the hyperparameter.

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

    The maximum allowable value for the hyperparameter.

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

    Indicates whether the hyperparameter is tunable.

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