Class: Google::Apis::LanguageV1beta2::XpsXraiAttribution

Inherits:
Object
  • Object
show all
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

An explanation method that redistributes Integrated Gradients attributions to segmented regions, taking advantage of the model's fully differentiable structure. Refer to this paper for more details: https://arxiv.org/abs/1906. 02825 Only supports image Models (modality is IMAGE).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsXraiAttribution

Returns a new instance of XpsXraiAttribution.



5500
5501
5502
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5500

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

Instance Attribute Details

#step_countFixnum

The number of steps for approximating the path integral. A good value to start is 50 and gradually increase until the sum to diff property is met within the desired error range. Valid range of its value is [1, 100], inclusively. Corresponds to the JSON property stepCount

Returns:

  • (Fixnum)


5498
5499
5500
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5498

def step_count
  @step_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5505
5506
5507
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5505

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