Module Values_0.FinalAutoMLJobObjectiveMetricSource

The best candidate result from an AutoML training job.

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

    The type of metric with the best result.

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

    The name of the metric with the best result. For a description of the possible objective metrics, see AutoMLJobObjective$MetricName.

    *)
  3. value : MetricValue.t option;
    (*

    The value of the metric with the best result.

    *)
  4. standardMetricName : AutoMLMetricEnum.t option;
    (*

    The name of the standard metric. For a description of the standard metrics, see Autopilot candidate metrics.

    *)
}
Sourceval make : ?type_:??? -> ?metricName:??? -> ?value:??? -> ?standardMetricName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of MetricValue.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