Module Values_1.ConfusionMatrixSource

The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making. For more information, see Confusion matrix in Wikipedia.

Sourcetype nonrec t = {
  1. numTruePositives : RecordsCount.t option;
    (*

    The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.

    *)
  2. numFalsePositives : RecordsCount.t option;
    (*

    The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion matrix for your transform.

    *)
  3. numTrueNegatives : RecordsCount.t option;
    (*

    The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your transform.

    *)
  4. numFalseNegatives : RecordsCount.t option;
    (*

    The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.

    *)
}
Sourceval make : ?numTruePositives:??? -> ?numFalsePositives:??? -> ?numTrueNegatives:??? -> ?numFalseNegatives:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of RecordsCount.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