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

GoogleCloudDatalabelingV1beta1AnnotatedDataset

import type { GoogleCloudDatalabelingV1beta1AnnotatedDataset } from "https://googleapis.deno.dev/v1/datalabeling:v1beta1.ts";

AnnotatedDataset is a set holding annotations for data in a Dataset. Each labeling task will generate an AnnotatedDataset under the Dataset that the task is requested for.

interface GoogleCloudDatalabelingV1beta1AnnotatedDataset {
annotationSource?: "ANNOTATION_SOURCE_UNSPECIFIED" | "OPERATOR";
annotationType?:
| "ANNOTATION_TYPE_UNSPECIFIED"
| "IMAGE_CLASSIFICATION_ANNOTATION"
| "IMAGE_BOUNDING_BOX_ANNOTATION"
| "IMAGE_ORIENTED_BOUNDING_BOX_ANNOTATION"
| "IMAGE_BOUNDING_POLY_ANNOTATION"
| "IMAGE_POLYLINE_ANNOTATION"
| "IMAGE_SEGMENTATION_ANNOTATION"
| "VIDEO_SHOTS_CLASSIFICATION_ANNOTATION"
| "VIDEO_OBJECT_TRACKING_ANNOTATION"
| "VIDEO_OBJECT_DETECTION_ANNOTATION"
| "VIDEO_EVENT_ANNOTATION"
| "TEXT_CLASSIFICATION_ANNOTATION"
| "TEXT_ENTITY_EXTRACTION_ANNOTATION"
| "GENERAL_CLASSIFICATION_ANNOTATION";
blockingResources?: string[];
completedExampleCount?: bigint;
createTime?: Date;
description?: string;
displayName?: string;
exampleCount?: bigint;
name?: string;
}

§Properties

§
annotationSource?: "ANNOTATION_SOURCE_UNSPECIFIED" | "OPERATOR"
[src]

Output only. Source of the annotation.

§
annotationType?: "ANNOTATION_TYPE_UNSPECIFIED" | "IMAGE_CLASSIFICATION_ANNOTATION" | "IMAGE_BOUNDING_BOX_ANNOTATION" | "IMAGE_ORIENTED_BOUNDING_BOX_ANNOTATION" | "IMAGE_BOUNDING_POLY_ANNOTATION" | "IMAGE_POLYLINE_ANNOTATION" | "IMAGE_SEGMENTATION_ANNOTATION" | "VIDEO_SHOTS_CLASSIFICATION_ANNOTATION" | "VIDEO_OBJECT_TRACKING_ANNOTATION" | "VIDEO_OBJECT_DETECTION_ANNOTATION" | "VIDEO_EVENT_ANNOTATION" | "TEXT_CLASSIFICATION_ANNOTATION" | "TEXT_ENTITY_EXTRACTION_ANNOTATION" | "GENERAL_CLASSIFICATION_ANNOTATION"
[src]

Output only. Type of the annotation. It is specified when starting labeling task.

§
blockingResources?: string[]
[src]

Output only. The names of any related resources that are blocking changes to the annotated dataset.

§
completedExampleCount?: bigint
[src]

Output only. Number of examples that have annotation in the annotated dataset.

§
createTime?: Date
[src]

Output only. Time the AnnotatedDataset was created.

§
description?: string
[src]

Output only. The description of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 10000 characters.

§
displayName?: string
[src]

Output only. The display name of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 64 characters.

§
exampleCount?: bigint
[src]

Output only. Number of examples in the annotated dataset.

§

Output only. Per label statistics.

§

Output only. Additional information about AnnotatedDataset.

§
name?: string
[src]

Output only. AnnotatedDataset resource name in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}