Show / Hide Table of Contents

Class LabelStats

Statistics about annotation specs.

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

Constructors

LabelStats()

Declaration
public LabelStats()

LabelStats(LabelStats)

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

Properties

ExampleCount

Map of each annotation spec's example count. Key is the annotation spec name and value is the number of examples for that annotation spec. If the annotated dataset does not have annotation spec, the map will return a pair where the key is empty string and value is the total number of annotations.

Declaration
public MapField<string, long> ExampleCount { get; }
Property Value
Type Description
MapField<System.String, System.Int64>
Back to top