class Google::Apis::BigqueryV2::Entry
A single entry in the confusion matrix.
Attributes
item_count[RW]
Number of items being predicted as this label. Corresponds to the JSON property `itemCount` @return [Fixnum]
predicted_label[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 2009 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 2014 def update!(**args) @item_count = args[:item_count] if args.key?(:item_count) @predicted_label = args[:predicted_label] if args.key?(:predicted_label) end