Class: Google::Apis::BigqueryV2::GlobalExplanation

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

Global explanations containing the top most important features after training.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GlobalExplanation

Returns a new instance of GlobalExplanation.



2500
2501
2502
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2500

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

Instance Attribute Details

#class_labelString

Class label for this set of global explanations. Will be empty/null for binary logistic and linear regression models. Sorted alphabetically in descending order. Corresponds to the JSON property classLabel

Returns:

  • (String)


2492
2493
2494
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2492

def class_label
  @class_label
end

#explanationsArray<Google::Apis::BigqueryV2::Explanation>

A list of the top global explanations. Sorted by absolute value of attribution in descending order. Corresponds to the JSON property explanations



2498
2499
2500
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2498

def explanations
  @explanations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2505
2506
2507
2508
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2505

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