Module Values.AdapterVersionEvaluationMetricSource

Contains information on the metrics used to evalute the peformance of a given adapter version. Includes data for baseline model performance and individual adapter version perfromance.

Sourcetype nonrec t = {
  1. baseline : EvaluationMetric.t option;
    (*

    The F1 score, precision, and recall metrics for the baseline model.

    *)
  2. adapterVersion : EvaluationMetric.t option;
    (*

    The F1 score, precision, and recall metrics for the baseline model.

    *)
  3. featureType : FeatureType.t option;
    (*

    Indicates the feature type being analyzed by a given adapter version.

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