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

Prediction

import type { Prediction } from "https://aws-api-16vtt531a2w0.deno.dev/v0.2/services/machinelearning.ts";
interface Prediction {
details?: [key in DetailsAttributes]: string | null | undefined | null;
predictedLabel?: string | null;
predictedScores?: {
[key: string]: number | null | undefined;
}
| null;
predictedValue?: number | null;
}

§Properties

§
details?: [key in DetailsAttributes]: string | null | undefined | null
[src]
§
predictedLabel?: string | null
[src]
§
predictedScores?: {
[key: string]: number | null | undefined;
}
| null
[src]
§
predictedValue?: number | null
[src]