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

LabelingJobStoppingConditions

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

A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.

Note: Labeling jobs fail after 30 days with an appropriate client error message.

interface LabelingJobStoppingConditions {
MaxHumanLabeledObjectCount?: number | null;
MaxPercentageOfInputDatasetLabeled?: number | null;
}

§Properties

§
MaxHumanLabeledObjectCount?: number | null
[src]

The maximum number of objects that can be labeled by human workers.

§
MaxPercentageOfInputDatasetLabeled?: number | null
[src]

The maximum number of input data objects that should be labeled.