Show / Hide Table of Contents

Class BinaryClassificationMetrics

Evaluation metrics for binary classification/classifier models.

Inheritance
System.Object
BinaryClassificationMetrics
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class BinaryClassificationMetrics : IDirectResponseSchema

Properties

AggregateClassificationMetrics

Aggregate classification metrics.

Declaration
[JsonProperty("aggregateClassificationMetrics")]
public virtual AggregateClassificationMetrics AggregateClassificationMetrics { get; set; }
Property Value
Type Description
AggregateClassificationMetrics

BinaryConfusionMatrixList

Binary confusion matrix at multiple thresholds.

Declaration
[JsonProperty("binaryConfusionMatrixList")]
public virtual IList<BinaryConfusionMatrix> BinaryConfusionMatrixList { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<BinaryConfusionMatrix>

ETag

The ETag of the item.

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

NegativeLabel

Label representing the negative class.

Declaration
[JsonProperty("negativeLabel")]
public virtual string NegativeLabel { get; set; }
Property Value
Type Description
System.String

PositiveLabel

Label representing the positive class.

Declaration
[JsonProperty("positiveLabel")]
public virtual string PositiveLabel { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top