Class: Google::Apis::BigqueryV2::Entry

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb

Overview

A single entry in the confusion matrix.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Entry

Returns a new instance of Entry.



1474
1475
1476
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1474

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#item_countFixnum

Number of items being predicted as this label. Corresponds to the JSON property itemCount

Returns:

  • (Fixnum)


1465
1466
1467
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1465

def item_count
  @item_count
end

#predicted_labelString

The predicted label. For confidence_threshold > 0, we will also add an entry indicating the number of items under the confidence threshold. Corresponds to the JSON property predictedLabel

Returns:

  • (String)


1472
1473
1474
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1472

def predicted_label
  @predicted_label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1479
1480
1481
1482
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1479

def update!(**args)
  @item_count = args[:item_count] if args.key?(:item_count)
  @predicted_label = args[:predicted_label] if args.key?(:predicted_label)
end