Module Values.EvaluationResultSource

The evaluation results for the training of a model.

Sourcetype nonrec t = {
  1. f1Score : Float_.t option;
    (*

    The F1 score for the evaluation of all labels. The F1 score metric evaluates the overall precision and recall performance of the model as a single value. A higher value indicates better precision and recall performance. A lower score indicates that precision, recall, or both are performing poorly.

    *)
  2. summary : Summary.t option;
    (*

    The S3 bucket that contains the training summary.

    *)
}
Sourceval make : ?f1Score:??? -> ?summary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t | `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.t ]) list ]) 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