class Google::Apis::BigqueryV2::Row

A single row in the confusion matrix.

Attributes

actual_label[RW]

The original label of this row. Corresponds to the JSON property `actualLabel` @return [String]

entries[RW]

Info describing predicted label distribution. Corresponds to the JSON property `entries` @return [Array<Google::Apis::BigqueryV2::Entry>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5734
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquery_v2/classes.rb, line 5739
def update!(**args)
  @actual_label = args[:actual_label] if args.key?(:actual_label)
  @entries = args[:entries] if args.key?(:entries)
end