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

InferenceSpecification

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

Defines how to perform inference generation after a training job is run.

interface InferenceSpecification {
SupportedContentTypes: string[];
SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[] | null;
SupportedResponseMIMETypes: string[];
SupportedTransformInstanceTypes?: TransformInstanceType[] | null;
}

§Properties

§

The Amazon ECR registry path of the Docker image that contains the inference code.

§
SupportedContentTypes: string[]
[src]

The supported MIME types for the input data.

§
SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[] | null
[src]

A list of the instance types that are used to generate inferences in real-time.

This parameter is required for unversioned models, and optional for versioned models.

§
SupportedResponseMIMETypes: string[]
[src]

The supported MIME types for the output data.

§
SupportedTransformInstanceTypes?: TransformInstanceType[] | null
[src]

A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.

This parameter is required for unversioned models, and optional for versioned models.