Show / Hide Table of Contents

Class OperatorMetadata

General information useful for labels coming from contributors.

Inheritance
System.Object
OperatorMetadata
Implements
IMessage<OperatorMetadata>
System.IEquatable<OperatorMetadata>
IDeepCloneable<OperatorMetadata>
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 OperatorMetadata : IMessage<OperatorMetadata>, IEquatable<OperatorMetadata>, IDeepCloneable<OperatorMetadata>, IBufferMessage, IMessage

Constructors

OperatorMetadata()

Declaration
public OperatorMetadata()

OperatorMetadata(OperatorMetadata)

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

Properties

Comments

Comments from contributors.

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

LabelVotes

The total number of contributors that choose this label.

Declaration
public int LabelVotes { get; set; }
Property Value
Type Description
System.Int32

Score

Confidence score corresponding to a label. For examle, if 3 contributors have answered the question and 2 of them agree on the final label, the confidence score will be 0.67 (2/3).

Declaration
public float Score { get; set; }
Property Value
Type Description
System.Single

TotalVotes

The total number of contributors that answer this question.

Declaration
public int TotalVotes { get; set; }
Property Value
Type Description
System.Int32
Back to top