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

UpdateMLModelInput

import type { UpdateMLModelInput } from "https://aws-api.deno.dev/v0.4/services/machinelearning.ts?docs=full";
interface UpdateMLModelInput {
MLModelId: string;
MLModelName?: string | null;
ScoreThreshold?: number | null;
}

§Properties

§
MLModelId: string
[src]

The ID assigned to the MLModel during creation.

§
MLModelName?: string | null
[src]

A user-supplied name or description of the MLModel.

§
ScoreThreshold?: number | null
[src]

The ScoreThreshold used in binary classification MLModel that marks the boundary between a positive prediction and a negative prediction.

Output values greater than or equal to the ScoreThreshold receive a positive result from the MLModel, such as true. Output values less than the ScoreThreshold receive a negative response from the MLModel, such as false.