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

ClassifierMetadata

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

Provides information about a document classifier.

interface ClassifierMetadata {
EvaluationMetrics?: ClassifierEvaluationMetrics | null;
NumberOfLabels?: number | null;
NumberOfTestDocuments?: number | null;
NumberOfTrainedDocuments?: number | null;
}

§Properties

§
EvaluationMetrics?: ClassifierEvaluationMetrics | null
[src]

Describes the result metrics for the test data associated with an documentation classifier.

§
NumberOfLabels?: number | null
[src]

The number of labels in the input data.

§
NumberOfTestDocuments?: number | null
[src]

The number of documents in the input data that were used to test the classifier. Typically this is 10 to 20 percent of the input documents, up to 10,000 documents.

§
NumberOfTrainedDocuments?: number | null
[src]

The number of documents in the input data that were used to train the classifier. Typically this is 80 to 90 percent of the input documents.