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

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

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

Supported only by image Models.

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 met 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 XraiAttribution[src]

impl Debug for XraiAttribution[src]

impl Default for XraiAttribution[src]

impl Message for XraiAttribution[src]

impl PartialEq<XraiAttribution> for XraiAttribution[src]

impl StructuralPartialEq for XraiAttribution[src]

Auto Trait Implementations

impl RefUnwindSafe for XraiAttribution

impl Send for XraiAttribution

impl Sync for XraiAttribution

impl Unpin for XraiAttribution

impl UnwindSafe for XraiAttribution

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]