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

MetricDefinition

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

Specifies a metric that the training algorithm writes to stderr or stdout. SageMakerhyperparameter tuning captures all defined metrics. You specify one metric that a hyperparameter tuning job uses as its objective metric to choose the best training job.

interface MetricDefinition {
Name: string;
Regex: string;
}

§Properties

§
Name: string
[src]

The name of the metric.

§
Regex: string
[src]

A regular expression that searches the output of a training job and gets the value of the metric. For more information about using regular expressions to define metrics, see Defining Objective Metrics.