Show / Hide Table of Contents

Class AnnotatedDataset

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.

Inheritance
System.Object
AnnotatedDataset
Implements
IMessage<AnnotatedDataset>
System.IEquatable<AnnotatedDataset>
IDeepCloneable<AnnotatedDataset>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class AnnotatedDataset : IMessage<AnnotatedDataset>, IEquatable<AnnotatedDataset>, IDeepCloneable<AnnotatedDataset>, IBufferMessage, IMessage

Constructors

AnnotatedDataset()

Declaration
public AnnotatedDataset()

AnnotatedDataset(AnnotatedDataset)

Declaration
public AnnotatedDataset(AnnotatedDataset other)
Parameters
Type Name Description
AnnotatedDataset other

Properties

AnnotatedDatasetName

AnnotatedDatasetName-typed view over the Name resource name property.

Declaration
public AnnotatedDatasetName AnnotatedDatasetName { get; set; }
Property Value
Type Description
AnnotatedDatasetName

AnnotationSource

Output only. Source of the annotation.

Declaration
public AnnotationSource AnnotationSource { get; set; }
Property Value
Type Description
AnnotationSource

AnnotationType

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

Declaration
public AnnotationType AnnotationType { get; set; }
Property Value
Type Description
AnnotationType

BlockingResources

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

Declaration
public RepeatedField<string> BlockingResources { get; }
Property Value
Type Description
RepeatedField<System.String>

CompletedExampleCount

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

Declaration
public long CompletedExampleCount { get; set; }
Property Value
Type Description
System.Int64

CreateTime

Output only. Time the AnnotatedDataset was created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Timestamp

Description

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

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String

DisplayName

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

Declaration
public string DisplayName { get; set; }
Property Value
Type Description
System.String

ExampleCount

Output only. Number of examples in the annotated dataset.

Declaration
public long ExampleCount { get; set; }
Property Value
Type Description
System.Int64

LabelStats

Output only. Per label statistics.

Declaration
public LabelStats LabelStats { get; set; }
Property Value
Type Description
LabelStats

Metadata

Output only. Additional information about AnnotatedDataset.

Declaration
public AnnotatedDatasetMetadata Metadata { get; set; }
Property Value
Type Description
AnnotatedDatasetMetadata

Name

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

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
Back to top