Class: Google::Apis::MlV1::GoogleCloudMlV1IntegratedGradientsAttribution

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/ml_v1/classes.rb,
generated/google/apis/ml_v1/representations.rb,
generated/google/apis/ml_v1/representations.rb

Overview

Attributes credit by computing the Aumann-Shapley value taking advantage of the model's fully differentiable structure. Refer to this paper for more details: http://proceedings.mlr.press/v70/sundararajan17a.html

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1IntegratedGradientsAttribution

Returns a new instance of GoogleCloudMlV1IntegratedGradientsAttribution.



586
587
588
# File 'generated/google/apis/ml_v1/classes.rb', line 586

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

Instance Attribute Details

#num_integral_stepsFixnum

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. Corresponds to the JSON property numIntegralSteps

Returns:

  • (Fixnum)


584
585
586
# File 'generated/google/apis/ml_v1/classes.rb', line 584

def num_integral_steps
  @num_integral_steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



591
592
593
# File 'generated/google/apis/ml_v1/classes.rb', line 591

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