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

ModelScores

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

The fraud prediction scores.

interface ModelScores {
modelVersion?: ModelVersion | null;
scores?: {
[key: string]: number | null | undefined;
}
| null;
}

§Properties

§
modelVersion?: ModelVersion | null
[src]

The model version.

§
scores?: {
[key: string]: number | null | undefined;
}
| null
[src]

The model's fraud prediction scores.