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

Algorithm

import type { Algorithm } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

Describes a custom algorithm.

interface Algorithm {
algorithmArn?: string | null;
algorithmImage?: AlgorithmImage | null;
creationDateTime?: Date | number | null;
defaultHyperParameterRanges?: DefaultHyperParameterRanges | null;
defaultHyperParameters?: {
[key: string]: string | null | undefined;
}
| null;
defaultResourceConfig?: {
[key: string]: string | null | undefined;
}
| null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
roleArn?: string | null;
trainingInputMode?: string | null;
}

§Properties

§
algorithmArn?: string | null
[src]

The Amazon Resource Name (ARN) of the algorithm.

§
algorithmImage?: AlgorithmImage | null
[src]

The URI of the Docker container for the algorithm image.

§
creationDateTime?: Date | number | null
[src]

The date and time (in Unix time) that the algorithm was created.

§
defaultHyperParameterRanges?: DefaultHyperParameterRanges | null
[src]

Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).

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

Specifies the default hyperparameters.

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

Specifies the default maximum number of training jobs and parallel training jobs.

§
lastUpdatedDateTime?: Date | number | null
[src]

The date and time (in Unix time) that the algorithm was last updated.

§
name?: string | null
[src]

The name of the algorithm.

§
roleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the role.

§
trainingInputMode?: string | null
[src]

The training input mode.