Show / Hide Table of Contents

Class Row

A single row in the confusion matrix.

Inheritance
System.Object
Row
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 Row : IDirectResponseSchema

Properties

ActualLabel

The original label of this row.

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

Entries

Info describing predicted label distribution.

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

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In This Article
Back to top