Module Values.HPOConfigSource

Describes the properties for hyperparameter optimization (HPO).

Sourcetype nonrec t = {
  1. hpoObjective : HPOObjective.t option;
    (*

    The metric to optimize during HPO. Amazon Personalize doesn't support configuring the hpoObjective at this time.

    *)
  2. hpoResourceConfig : HPOResourceConfig.t option;
    (*

    Describes the resource configuration for HPO.

    *)
  3. algorithmHyperParameterRanges : HyperParameterRanges.t option;
    (*

    The hyperparameters and their allowable ranges.

    *)
}
Sourceval make : ?hpoObjective:??? -> ?hpoResourceConfig:??? -> ?algorithmHyperParameterRanges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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 | `String of HPOObjectiveType.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