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

DescribeHyperParameterTuningJobResponse

import type { DescribeHyperParameterTuningJobResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeHyperParameterTuningJobResponse {
BestTrainingJob?: HyperParameterTrainingJobSummary | null;
ConsumedResources?: HyperParameterTuningJobConsumedResources | null;
CreationTime: Date | number;
FailureReason?: string | null;
HyperParameterTuningEndTime?: Date | number | null;
HyperParameterTuningJobArn: string;
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig;
HyperParameterTuningJobName: string;
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus;
LastModifiedTime?: Date | number | null;
ObjectiveStatusCounters: ObjectiveStatusCounters;
OverallBestTrainingJob?: HyperParameterTrainingJobSummary | null;
TrainingJobDefinition?: HyperParameterTrainingJobDefinition | null;
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | null;
TrainingJobStatusCounters: TrainingJobStatusCounters;
TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails | null;
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | null;
}

§Properties

§
BestTrainingJob?: HyperParameterTrainingJobSummary | null
[src]

A "TrainingJobSummary" object that describes the training job that completed with the best current "HyperParameterTuningJobObjective".

§
CreationTime: Date | number
[src]

The date and time that the tuning job started.

§
FailureReason?: string | null
[src]

If the tuning job failed, the reason it failed.

§
HyperParameterTuningEndTime?: Date | number | null
[src]

The date and time that the tuning job ended.

§
HyperParameterTuningJobArn: string
[src]

The Amazon Resource Name (ARN) of the tuning job.

§
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig
[src]

The "HyperParameterTuningJobConfig" object that specifies the configuration of the tuning job.

§
HyperParameterTuningJobName: string
[src]

The name of the tuning job.

§
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus
[src]

The status of the tuning job: InProgress, Completed, Failed, Stopping, or Stopped.

§
LastModifiedTime?: Date | number | null
[src]

The date and time that the status of the tuning job was modified.

§
ObjectiveStatusCounters: ObjectiveStatusCounters
[src]

The "ObjectiveStatusCounters" object that specifies the number of training jobs, categorized by the status of their final objective metric, that this tuning job launched.

§
OverallBestTrainingJob?: HyperParameterTrainingJobSummary | null
[src]

If the hyperparameter tuning job is an warm start tuning job with a WarmStartType of IDENTICAL_DATA_AND_ALGORITHM, this is the "TrainingJobSummary" for the training job with the best objective metric value of all training jobs launched by this tuning job and all parent jobs specified for the warm start tuning job.

§
TrainingJobDefinition?: HyperParameterTrainingJobDefinition | null
[src]

The "HyperParameterTrainingJobDefinition" object that specifies the definition of the training jobs that this tuning job launches.

§
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | null
[src]

A list of the "HyperParameterTrainingJobDefinition" objects launched for this tuning job.

§
TrainingJobStatusCounters: TrainingJobStatusCounters
[src]

The "TrainingJobStatusCounters" object that specifies the number of training jobs, categorized by status, that this tuning job launched.

§
TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails | null
[src]

Tuning job completion information returned as the response from a hyperparameter tuning job. This information tells if your tuning job has or has not converged. It also includes the number of training jobs that have not improved model performance as evaluated against the objective function.

§

The configuration for starting the hyperparameter parameter tuning job using one or more previous tuning jobs as a starting point. The results of previous tuning jobs are used to inform which combinations of hyperparameters to search over in the new tuning job.