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

ObjectiveStatusCounters

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

Specifies the number of training jobs that this hyperparameter tuning job launched, categorized by the status of their objective metric. The objective metric status shows whether the final objective metric for the training job has been evaluated by the tuning job and used in the hyperparameter tuning process.

interface ObjectiveStatusCounters {
Failed?: number | null;
Pending?: number | null;
Succeeded?: number | null;
}

§Properties

§
Failed?: number | null
[src]

The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.

§
Pending?: number | null
[src]

The number of training jobs that are in progress and pending evaluation of their final objective metric.

§
Succeeded?: number | null
[src]

The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.