Module Values.TrainingMetricsSource

Contains metrics and performance indicators from the training of a recommender model.

Sourcetype nonrec t = {
  1. time : Timestamp.t option;
    (*

    The timestamp when these training metrics were recorded.

    *)
  2. metrics : Metrics.t option;
    (*

    A collection of performance metrics and statistics from the training process.

    *)
}
Sourceval make : ?time:??? -> ?metrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Double of Double.t ]) list | `Timestamp of Timestamp.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