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

EntityRecognizerMetadata

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

Detailed information about an entity recognizer.

interface EntityRecognizerMetadata {
EvaluationMetrics?: EntityRecognizerEvaluationMetrics | null;
NumberOfTestDocuments?: number | null;
NumberOfTrainedDocuments?: number | null;
}

§Properties

§

Entity types from the metadata of an entity recognizer.

§
EvaluationMetrics?: EntityRecognizerEvaluationMetrics | null
[src]

Detailed information about the accuracy of an entity recognizer.

§
NumberOfTestDocuments?: number | null
[src]

The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.

§
NumberOfTrainedDocuments?: number | null
[src]

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