Class: Google::Apis::LanguageV1beta2::XpsResponseExplanationSpec
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::XpsResponseExplanationSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb
Overview
Specification of Model explanation. Feature-based XAI in AutoML Vision ICN is deprecated, see b/288407203 for context.
Instance Attribute Summary collapse
-
#explanation_type ⇒ String
Explanation type.
-
#metadata ⇒ Google::Apis::LanguageV1beta2::XpsResponseExplanationMetadata
Metadata describing the Model's input and output for explanation.
-
#parameters ⇒ Google::Apis::LanguageV1beta2::XpsResponseExplanationParameters
Parameters that configure explaining of the Model's predictions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsResponseExplanationSpec
constructor
A new instance of XpsResponseExplanationSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsResponseExplanationSpec
Returns a new instance of XpsResponseExplanationSpec.
3399 3400 3401 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3399 def initialize(**args) update!(**args) end |
Instance Attribute Details
#explanation_type ⇒ String
Explanation type. For AutoML Image Classification models, possible values are:
image-integrated-gradients
*image-xrai
Corresponds to the JSON propertyexplanationType
3387 3388 3389 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3387 def explanation_type @explanation_type end |
#metadata ⇒ Google::Apis::LanguageV1beta2::XpsResponseExplanationMetadata
Metadata describing the Model's input and output for explanation.
Corresponds to the JSON property metadata
3392 3393 3394 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3392 def @metadata end |
#parameters ⇒ Google::Apis::LanguageV1beta2::XpsResponseExplanationParameters
Parameters that configure explaining of the Model's predictions.
Corresponds to the JSON property parameters
3397 3398 3399 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3397 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3404 3405 3406 3407 3408 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3404 def update!(**args) @explanation_type = args[:explanation_type] if args.key?(:explanation_type) @metadata = args[:metadata] if args.key?(:metadata) @parameters = args[:parameters] if args.key?(:parameters) end |