Show / Hide Table of Contents

Class ClassificationMetrics

Metrics calculated for a classification model.

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

Constructors

ClassificationMetrics()

Declaration
public ClassificationMetrics()

ClassificationMetrics(ClassificationMetrics)

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

Properties

ConfusionMatrix

Confusion matrix of predicted labels vs. ground truth labels.

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

PrCurve

Precision-recall curve based on ground truth labels, predicted labels, and scores for the predicted labels.

Declaration
public PrCurve PrCurve { get; set; }
Property Value
Type Description
PrCurve
Back to top