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

CreateSolutionRequest

import type { CreateSolutionRequest } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";
interface CreateSolutionRequest {
datasetGroupArn: string;
eventType?: string | null;
name: string;
performAutoML?: boolean | null;
performHPO?: boolean | null;
recipeArn?: string | null;
solutionConfig?: SolutionConfig | null;
}

§Properties

§
datasetGroupArn: string
[src]

The Amazon Resource Name (ARN) of the dataset group that provides the training data.

§
eventType?: string | null
[src]

When your have multiple event types (using an EVENT_TYPE schema field), this parameter specifies which event type (for example, 'click' or 'like') is used for training the model.

If you do not provide an eventType, Amazon Personalize will use all interactions for training with equal weight regardless of type.

§
name: string
[src]

The name for the solution.

§
performAutoML?: boolean | null
[src]

Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.

When set to true, Amazon Personalize analyzes your training data and selects the optimal USER_PERSONALIZATION recipe and hyperparameters. In this case, you must omit recipeArn. Amazon Personalize determines the optimal recipe by running tests with different values for the hyperparameters. AutoML lengthens the training process as compared to selecting a specific recipe.

§
performHPO?: boolean | null
[src]

Whether to perform hyperparameter optimization (HPO) on the specified or selected recipe. The default is false.

When performing AutoML, this parameter is always true and you should not set it to false.

§
recipeArn?: string | null
[src]

The ARN of the recipe to use for model training. Only specified when performAutoML is false.

§
solutionConfig?: SolutionConfig | null
[src]

The configuration to use with the solution. When performAutoML is set to true, Amazon Personalize only evaluates the autoMLConfig section of the solution configuration.

Note: Amazon Personalize doesn't support configuring the hpoObjective at this time.