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

AlgorithmSpecification

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

Specifies the training algorithm to use in a "CreateTrainingJob" request.

For more information about algorithms provided by Amazon SageMaker, see Algorithms. For information about using your own algorithms, see Using Your Own Algorithms with Amazon SageMaker.

interface AlgorithmSpecification {
AlgorithmName?: string | null;
EnableSageMakerMetricsTimeSeries?: boolean | null;
MetricDefinitions?: MetricDefinition[] | null;
TrainingImage?: string | null;
TrainingInputMode: TrainingInputMode;
}

§Properties

§
AlgorithmName?: string | null
[src]

The name of the algorithm resource to use for the training job. This must be an algorithm resource that you created or subscribe to on Amazon Web Services Marketplace. If you specify a value for this parameter, you can't specify a value for TrainingImage.

§
EnableSageMakerMetricsTimeSeries?: boolean | null
[src]

To generate and save time-series metrics during training, set to true. The default is false and time-series metrics aren't generated except in the following cases:

  • You use one of the Amazon SageMaker built-in algorithms
  • You use one of the following Prebuilt Amazon SageMaker Docker Images:
    • Tensorflow (version >= 1.15)
    • MXNet (version >= 1.6)
    • PyTorch (version >= 1.3)
  • You specify at least one "MetricDefinition"
§
MetricDefinitions?: MetricDefinition[] | null
[src]

A list of metric definition objects. Each object specifies the metric name and regular expressions used to parse algorithm logs. Amazon SageMaker publishes each metric to Amazon CloudWatch.

§
TrainingImage?: string | null
[src]

The registry path of the Docker image that contains the training algorithm. For information about docker registry paths for built-in algorithms, see Algorithms Provided by Amazon SageMaker: Common Parameters. Amazon SageMaker supports both registry/repository[:tag] and registry/repository[@digest] image path formats. For more information, see Using Your Own Algorithms with Amazon SageMaker.

§
TrainingInputMode: TrainingInputMode
[src]