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

ResourceLimits

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

Specifies the maximum number of training jobs and parallel training jobs that a hyperparameter tuning job can launch.

interface ResourceLimits {
MaxNumberOfTrainingJobs?: number | null;
MaxParallelTrainingJobs: number;
MaxRuntimeInSeconds?: number | null;
}

§Properties

§
MaxNumberOfTrainingJobs?: number | null
[src]

The maximum number of training jobs that a hyperparameter tuning job can launch.

§
MaxParallelTrainingJobs: number
[src]

The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.

§
MaxRuntimeInSeconds?: number | null
[src]

The maximum time in seconds that a training job launched by a hyperparameter tuning job can run.