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

GoogleCloudAiplatformV1DataLabelingJob

import type { GoogleCloudAiplatformV1DataLabelingJob } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

DataLabelingJob is used to trigger a human labeling job on unlabeled data from the following Dataset:

interface GoogleCloudAiplatformV1DataLabelingJob {
annotationLabels?: {
[key: string]: string;
}
;
readonly createTime?: Date;
readonly currentSpend?: GoogleTypeMoney;
datasets?: string[];
displayName?: string;
readonly error?: GoogleRpcStatus;
inputs?: any;
inputsSchemaUri?: string;
instructionUri?: string;
labelerCount?: number;
readonly labelingProgress?: number;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
specialistPools?: string[];
readonly state?:
| "JOB_STATE_UNSPECIFIED"
| "JOB_STATE_QUEUED"
| "JOB_STATE_PENDING"
| "JOB_STATE_RUNNING"
| "JOB_STATE_SUCCEEDED"
| "JOB_STATE_FAILED"
| "JOB_STATE_CANCELLING"
| "JOB_STATE_CANCELLED"
| "JOB_STATE_PAUSED"
| "JOB_STATE_EXPIRED"
| "JOB_STATE_UPDATING"
| "JOB_STATE_PARTIALLY_SUCCEEDED";
readonly updateTime?: Date;
}

§Properties

§

Parameters that configure the active learning pipeline. Active learning will label the data incrementally via several iterations. For every iteration, it will select a batch of data based on the sampling strategy.

§
annotationLabels?: {
[key: string]: string;
}
[src]

Labels to assign to annotations generated by this DataLabelingJob. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.

§
readonly createTime?: Date
[src]

Output only. Timestamp when this DataLabelingJob was created.

§
readonly currentSpend?: GoogleTypeMoney
[src]

Output only. Estimated cost(in US dollars) that the DataLabelingJob has incurred to date.

§
datasets?: string[]
[src]

Required. Dataset resource names. Right now we only support labeling from a single Dataset. Format: projects/{project}/locations/{location}/datasets/{dataset}

§
displayName?: string
[src]

Required. The user-defined name of the DataLabelingJob. The name can be up to 128 characters long and can consist of any UTF-8 characters. Display name of a DataLabelingJob.

§

Customer-managed encryption key spec for a DataLabelingJob. If set, this DataLabelingJob will be secured by this key. Note: Annotations created in the DataLabelingJob are associated with the EncryptionSpec of the Dataset they are exported to.

§
readonly error?: GoogleRpcStatus
[src]

Output only. DataLabelingJob errors. It is only populated when job's state is JOB_STATE_FAILED or JOB_STATE_CANCELLED.

§
inputs?: any
[src]

Required. Input config parameters for the DataLabelingJob.

§
inputsSchemaUri?: string
[src]

Required. Points to a YAML file stored on Google Cloud Storage describing the config for a specific type of DataLabelingJob. The schema files that can be used here are found in the https://storage.googleapis.com/google-cloud-aiplatform bucket in the /schema/datalabelingjob/inputs/ folder.

§
instructionUri?: string
[src]

Required. The Google Cloud Storage location of the instruction pdf. This pdf is shared with labelers, and provides detailed description on how to label DataItems in Datasets.

§
labelerCount?: number
[src]

Required. Number of labelers to work on each DataItem.

§
readonly labelingProgress?: number
[src]

Output only. Current labeling job progress percentage scaled in interval [0, 100], indicating the percentage of DataItems that has been finished.

§
labels?: {
[key: string]: string;
}
[src]

The labels with user-defined metadata to organize your DataLabelingJobs. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. Following system labels exist for each DataLabelingJob: * "aiplatform.googleapis.com/schema": output only, its value is the inputs_schema's title.

§
readonly name?: string
[src]

Output only. Resource name of the DataLabelingJob.

§
specialistPools?: string[]
[src]

The SpecialistPools' resource names associated with this job.

§
readonly state?: "JOB_STATE_UNSPECIFIED" | "JOB_STATE_QUEUED" | "JOB_STATE_PENDING" | "JOB_STATE_RUNNING" | "JOB_STATE_SUCCEEDED" | "JOB_STATE_FAILED" | "JOB_STATE_CANCELLING" | "JOB_STATE_CANCELLED" | "JOB_STATE_PAUSED" | "JOB_STATE_EXPIRED" | "JOB_STATE_UPDATING" | "JOB_STATE_PARTIALLY_SUCCEEDED"
[src]

Output only. The detailed state of the job.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this DataLabelingJob was updated most recently.