Class: Google::Apis::BigqueryV2::GlobalExplanation
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::GlobalExplanation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Global explanations containing the top most important features after training.
Instance Attribute Summary collapse
-
#class_label ⇒ String
Class label for this set of global explanations.
-
#explanations ⇒ Array<Google::Apis::BigqueryV2::Explanation>
A list of the top global explanations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GlobalExplanation
constructor
A new instance of GlobalExplanation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GlobalExplanation
Returns a new instance of GlobalExplanation.
3593 3594 3595 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3593 def initialize(**args) update!(**args) end |
Instance Attribute Details
#class_label ⇒ String
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
3585 3586 3587 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3585 def class_label @class_label end |
#explanations ⇒ Array<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
3591 3592 3593 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3591 def explanations @explanations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3598 3599 3600 3601 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3598 def update!(**args) @class_label = args[:class_label] if args.key?(:class_label) @explanations = args[:explanations] if args.key?(:explanations) end |