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

SolutionConfig

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

Describes the configuration properties for the solution.

interface SolutionConfig {
algorithmHyperParameters?: {
[key: string]: string | null | undefined;
}
| null;
autoMLConfig?: AutoMLConfig | null;
eventValueThreshold?: string | null;
featureTransformationParameters?: {
[key: string]: string | null | undefined;
}
| null;
hpoConfig?: HPOConfig | null;
optimizationObjective?: OptimizationObjective | null;
}

§Properties

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

Lists the hyperparameter names and ranges.

§
autoMLConfig?: AutoMLConfig | null
[src]

The "AutoMLConfig" object containing a list of recipes to search when AutoML is performed.

§
eventValueThreshold?: string | null
[src]

Only events with a value greater than or equal to this threshold are used for training a model.

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

Lists the feature transformation parameters.

§
hpoConfig?: HPOConfig | null
[src]

Describes the properties for hyperparameter optimization (HPO).

§
optimizationObjective?: OptimizationObjective | null
[src]

Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.