Class BinaryConfusionMatrix
Confusion matrix for binary classification models.
Inheritance
object
BinaryConfusionMatrix
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class BinaryConfusionMatrix : IDirectResponseSchema
Properties
Accuracy
The fraction of predictions given the correct label.
Declaration
[JsonProperty("accuracy")]
public virtual double? Accuracy { get; set; }
Property Value
Type | Description |
---|---|
double? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
F1Score
The equally weighted average of recall and precision.
Declaration
[JsonProperty("f1Score")]
public virtual double? F1Score { get; set; }
Property Value
Type | Description |
---|---|
double? |
FalseNegatives
Number of false samples predicted as false.
Declaration
[JsonProperty("falseNegatives")]
public virtual long? FalseNegatives { get; set; }
Property Value
Type | Description |
---|---|
long? |
FalsePositives
Number of false samples predicted as true.
Declaration
[JsonProperty("falsePositives")]
public virtual long? FalsePositives { get; set; }
Property Value
Type | Description |
---|---|
long? |
PositiveClassThreshold
Threshold value used when computing each of the following metric.
Declaration
[JsonProperty("positiveClassThreshold")]
public virtual double? PositiveClassThreshold { get; set; }
Property Value
Type | Description |
---|---|
double? |
Precision
The fraction of actual positive predictions that had positive actual labels.
Declaration
[JsonProperty("precision")]
public virtual double? Precision { get; set; }
Property Value
Type | Description |
---|---|
double? |
Recall
The fraction of actual positive labels that were given a positive prediction.
Declaration
[JsonProperty("recall")]
public virtual double? Recall { get; set; }
Property Value
Type | Description |
---|---|
double? |
TrueNegatives
Number of true samples predicted as false.
Declaration
[JsonProperty("trueNegatives")]
public virtual long? TrueNegatives { get; set; }
Property Value
Type | Description |
---|---|
long? |
TruePositives
Number of true samples predicted as true.
Declaration
[JsonProperty("truePositives")]
public virtual long? TruePositives { get; set; }
Property Value
Type | Description |
---|---|
long? |