Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConfusionMatrix

import type { ConfusionMatrix } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

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.

interface ConfusionMatrix {
NumFalseNegatives?: number | null;
NumFalsePositives?: number | null;
NumTrueNegatives?: number | null;
NumTruePositives?: number | null;
}

§Properties

§
NumFalseNegatives?: number | null
[src]

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

§
NumFalsePositives?: number | null
[src]

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

§
NumTrueNegatives?: number | null
[src]

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

§
NumTruePositives?: number | null
[src]

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