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

ClassifyDocumentResponse

import type { ClassifyDocumentResponse } from "https://aws-api.deno.dev/v0.3/services/comprehend.ts?docs=full";
interface ClassifyDocumentResponse {
Classes?: DocumentClass[] | null;
Labels?: DocumentLabel[] | null;
}

§Properties

§
Classes?: DocumentClass[] | null
[src]

The classes used by the document being analyzed. These are used for multi-class trained models. Individual classes are mutually exclusive and each document is expected to have only a single class assigned to it. For example, an animal can be a dog or a cat, but not both at the same time.

§
Labels?: DocumentLabel[] | null
[src]

The labels used the document being analyzed. These are used for multi-label trained models. Individual labels represent different categories that are related in some manner and are not mutually exclusive. For example, a movie can be just an action movie, or it can be an action movie, a science fiction movie, and a comedy, all at the same time.