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

HyperParameterTrainingJobSummary

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

The container for the summary information about a training job.

interface HyperParameterTrainingJobSummary {
CreationTime: Date | number;
FailureReason?: string | null;
FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric | null;
ObjectiveStatus?: ObjectiveStatus | null;
TrainingEndTime?: Date | number | null;
TrainingJobArn: string;
TrainingJobDefinitionName?: string | null;
TrainingJobName: string;
TrainingJobStatus: TrainingJobStatus;
TrainingStartTime?: Date | number | null;
TunedHyperParameters: {
[key: string]: string | null | undefined;
}
;
TuningJobName?: string | null;
}

§Properties

§
CreationTime: Date | number
[src]

The date and time that the training job was created.

§
FailureReason?: string | null
[src]

The reason that the training job failed.

§
FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric | null
[src]

The "FinalHyperParameterTuningJobObjectiveMetric" object that specifies the value of the objective metric of the tuning job that launched this training job.

§
ObjectiveStatus?: ObjectiveStatus | null
[src]

The status of the objective metric for the training job:

  • Succeeded: The final objective metric for the training job was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.

  • Pending: The training job is in progress and evaluation of its final objective metric is pending.

  • Failed: The final objective metric for the training job was not evaluated, and was not used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.

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

Specifies the time when the training job ends on training instances. You are billed for the time interval between the value of TrainingStartTime and this time. For successful jobs and stopped jobs, this is the time after model artifacts are uploaded. For failed jobs, this is the time when SageMaker detects a job failure.

§
TrainingJobArn: string
[src]

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

§
TrainingJobDefinitionName?: string | null
[src]

The training job definition name.

§
TrainingJobName: string
[src]

The name of the training job.

§
TrainingJobStatus: TrainingJobStatus
[src]

The status of the training job.

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

The date and time that the training job started.

§
TunedHyperParameters: {
[key: string]: string | null | undefined;
}
[src]

A list of the hyperparameters for which you specified ranges to search.

§
TuningJobName?: string | null
[src]

The HyperParameter tuning job that launched the training job.