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

GoogleCloudDatalabelingV1beta1Annotation

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

Annotation for Example. Each example may have one or more annotations. For example in image classification problem, each image might have one or more labels. We call labels binded with this image an Annotation.

interface GoogleCloudDatalabelingV1beta1Annotation {
annotationSentiment?: "ANNOTATION_SENTIMENT_UNSPECIFIED" | "NEGATIVE" | "POSITIVE";
annotationSource?: "ANNOTATION_SOURCE_UNSPECIFIED" | "OPERATOR";
name?: string;
}

§Properties

§

Output only. Annotation metadata, including information like votes for labels.

§
annotationSentiment?: "ANNOTATION_SENTIMENT_UNSPECIFIED" | "NEGATIVE" | "POSITIVE"
[src]

Output only. Sentiment for this annotation.

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

Output only. The source of the annotation.

§

Output only. This is the actual annotation value, e.g classification, bounding box values are stored here.

§
name?: string
[src]

Output only. Unique name of this annotation, format is: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset}/examples/{example_id}/annotations/{annotation_id}