Show / Hide Table of Contents

Class ConfusionMatrix.Types.Row

A row in the confusion matrix. Each entry in this row has the same ground truth label.

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

Constructors

Row()

Declaration
public Row()

Row(ConfusionMatrix.Types.Row)

Declaration
public Row(ConfusionMatrix.Types.Row other)
Parameters
Type Name Description
ConfusionMatrix.Types.Row other

Properties

AnnotationSpec

The annotation spec of the ground truth label for this row.

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

Entries

A list of the confusion matrix entries. One entry for each possible predicted label.

Declaration
public RepeatedField<ConfusionMatrix.Types.ConfusionMatrixEntry> Entries { get; }
Property Value
Type Description
RepeatedField<ConfusionMatrix.Types.ConfusionMatrixEntry>
Back to top