Module Values_0.MetricDatumSource

Information about the metric for a candidate produced by an AutoML job.

Sourcetype nonrec t = {
  1. metricName : AutoMLMetricEnum.t option;
    (*

    The name of the metric.

    *)
  2. standardMetricName : AutoMLMetricExtendedEnum.t option;
    (*

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

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

    The value of the metric.

    *)
  4. set : MetricSetSource.t option;
    (*

    The dataset split from which the AutoML job produced the metric.

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