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

SentimentScore

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

Describes the level of confidence that Amazon Comprehend has in the accuracy of its detection of sentiments.

interface SentimentScore {
Mixed?: number | null;
Negative?: number | null;
Neutral?: number | null;
Positive?: number | null;
}

§Properties

§
Mixed?: number | null
[src]

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the MIXED sentiment.

§
Negative?: number | null
[src]

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the NEGATIVE sentiment.

§
Neutral?: number | null
[src]

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the NEUTRAL sentiment.

§
Positive?: number | null
[src]

The level of confidence that Amazon Comprehend has in the accuracy of its detection of the POSITIVE sentiment.