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

ModelPackageContainerDefinition

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

Describes the Docker container for the model package.

interface ModelPackageContainerDefinition {
ContainerHostname?: string | null;
Environment?: {
[key: string]: string | null | undefined;
}
| null;
Framework?: string | null;
FrameworkVersion?: string | null;
Image: string;
ImageDigest?: string | null;
ModelDataUrl?: string | null;
ModelInput?: ModelInput | null;
NearestModelName?: string | null;
ProductId?: string | null;
}

§Properties

§
ContainerHostname?: string | null
[src]

The DNS host name for the Docker container.

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

The environment variables to set in the Docker container. Each key and value in the Environment string to string map can have length of up to 1024. We support up to 16 entries in the map.

§
Framework?: string | null
[src]

The machine learning framework of the model package container image.

§
FrameworkVersion?: string | null
[src]

The framework version of the Model Package Container Image.

§
Image: string
[src]

The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored.

If you are using your own custom algorithm instead of an algorithm provided by SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both registry/repository[:tag] and registry/repository[@digest] image path formats. For more information, see Using Your Own Algorithms with Amazon SageMaker.

§
ImageDigest?: string | null
[src]

An MD5 hash of the training algorithm that identifies the Docker image used for training.

§
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 model package.

§
ModelInput?: ModelInput | null
[src]

A structure with Model Input details.

§
NearestModelName?: string | null
[src]

The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model. You can find a list of benchmarked models by calling ListModelMetadata.

§
ProductId?: string | null
[src]

The Amazon Web Services Marketplace product ID of the model package.