Module Values.HPOObjectiveSource

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

Sourcetype nonrec t = {
  1. type_ : HPOObjectiveType.t option;
    (*

    The type of the metric. Valid values are Maximize and Minimize.

    *)
  2. metricName : MetricName.t option;
    (*

    The name of the metric.

    *)
  3. metricRegex : MetricRegex.t option;
    (*

    A regular expression for finding the metric in the training job logs.

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