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

AlgorithmValidationProfile

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

Defines a training job and a batch transform job that Amazon SageMaker runs to validate your algorithm.

The data provided in the validation profile is made available to your buyers on Amazon Web Services Marketplace.

interface AlgorithmValidationProfile {
ProfileName: string;
TrainingJobDefinition: TrainingJobDefinition;
TransformJobDefinition?: TransformJobDefinition | null;
}

§Properties

§
ProfileName: string
[src]

The name of the profile for the algorithm. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

§
TrainingJobDefinition: TrainingJobDefinition
[src]

The TrainingJobDefinition object that describes the training job that Amazon SageMaker runs to validate your algorithm.

§
TransformJobDefinition?: TransformJobDefinition | null
[src]

The TransformJobDefinition object that describes the transform job that Amazon SageMaker runs to validate your algorithm.