Show / Hide Table of Contents

Class XPSTablesConfidenceMetricsEntry

Metrics for a single confidence threshold.

Inheritance
object
XPSTablesConfidenceMetricsEntry
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudNaturalLanguage.v2.Data
Assembly: Google.Apis.CloudNaturalLanguage.v2.dll
Syntax
public class XPSTablesConfidenceMetricsEntry : IDirectResponseSchema

Properties

ConfidenceThreshold

The confidence threshold value used to compute the metrics.

Declaration
[JsonProperty("confidenceThreshold")]
public virtual double? ConfidenceThreshold { 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 harmonic mean of recall and precision. (2 * precision * recall) / (precision + recall)

Declaration
[JsonProperty("f1Score")]
public virtual double? F1Score { get; set; }
Property Value
Type Description
double?

FalseNegativeCount

False negative count.

Declaration
[JsonProperty("falseNegativeCount")]
public virtual long? FalseNegativeCount { get; set; }
Property Value
Type Description
long?

FalsePositiveCount

False positive count.

Declaration
[JsonProperty("falsePositiveCount")]
public virtual long? FalsePositiveCount { get; set; }
Property Value
Type Description
long?

FalsePositiveRate

FPR = #false positives / (#false positives + #true negatives)

Declaration
[JsonProperty("falsePositiveRate")]
public virtual double? FalsePositiveRate { get; set; }
Property Value
Type Description
double?

Precision

Precision = #true positives / (#true positives + #false positives).

Declaration
[JsonProperty("precision")]
public virtual double? Precision { get; set; }
Property Value
Type Description
double?

Recall

Recall = #true positives / (#true positives + #false negatives).

Declaration
[JsonProperty("recall")]
public virtual double? Recall { get; set; }
Property Value
Type Description
double?

TrueNegativeCount

True negative count.

Declaration
[JsonProperty("trueNegativeCount")]
public virtual long? TrueNegativeCount { get; set; }
Property Value
Type Description
long?

TruePositiveCount

True positive count.

Declaration
[JsonProperty("truePositiveCount")]
public virtual long? TruePositiveCount { get; set; }
Property Value
Type Description
long?

TruePositiveRate

TPR = #true positives / (#true positives + #false negatvies)

Declaration
[JsonProperty("truePositiveRate")]
public virtual double? TruePositiveRate { get; set; }
Property Value
Type Description
double?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX