Module Values.FlywheelModelEvaluationMetricsSource

The evaluation metrics associated with the evaluated model.

Sourcetype nonrec t = {
  1. averageF1Score : Double.t option;
    (*

    The average F1 score from the evaluation metrics.

    *)
  2. averagePrecision : Double.t option;
    (*

    Average precision metric for the model.

    *)
  3. averageRecall : Double.t option;
    (*

    Average recall metric for the model.

    *)
  4. averageAccuracy : Double.t option;
    (*

    Average accuracy metric for the model.

    *)
}
Sourceval make : ?averageF1Score:??? -> ?averagePrecision:??? -> ?averageRecall:??? -> ?averageAccuracy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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