Struct gapi_grpc::google::cloud::aiplatform::v1beta1::IntegratedGradientsAttribution[][src]

pub struct IntegratedGradientsAttribution {
    pub step_count: i32,
    pub smooth_grad_config: Option<SmoothGradConfig>,
}

An attribution method that computes the Aumann-Shapley value taking advantage of the model’s fully differentiable structure. Refer to this paper for more details: https://arxiv.org/abs/1703.01365

Fields

step_count: i32

Required. 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 within the desired error range.

Valid range of its value is [1, 100], inclusively.

smooth_grad_config: Option<SmoothGradConfig>

Config for SmoothGrad approximation of gradients.

When enabled, the gradients are approximated by averaging the gradients from noisy samples in the vicinity of the inputs. Adding noise can help improve the computed gradients. Refer to this paper for more details: https://arxiv.org/pdf/1706.03825.pdf

Trait Implementations

impl Clone for IntegratedGradientsAttribution[src]

impl Debug for IntegratedGradientsAttribution[src]

impl Default for IntegratedGradientsAttribution[src]

impl Message for IntegratedGradientsAttribution[src]

impl PartialEq<IntegratedGradientsAttribution> for IntegratedGradientsAttribution[src]

impl StructuralPartialEq for IntegratedGradientsAttribution[src]

Auto Trait Implementations

impl RefUnwindSafe for IntegratedGradientsAttribution

impl Send for IntegratedGradientsAttribution

impl Sync for IntegratedGradientsAttribution

impl Unpin for IntegratedGradientsAttribution

impl UnwindSafe for IntegratedGradientsAttribution

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]