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

SourceAlgorithm

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

Specifies an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.

interface SourceAlgorithm {
AlgorithmName: string;
ModelDataUrl?: string | null;
}

§Properties

§
AlgorithmName: string
[src]

The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.

§
ModelDataUrl?: string | null
[src]

The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix).

Note: The model artifacts must be in an S3 bucket that is in the same region as the algorithm.