Enum gapi_grpc::google::cloud::aiplatform::v1beta1::explanation_metadata::input_metadata::visualization::Polarity[][src]

#[repr(i32)]pub enum Polarity {
    Unspecified,
    Positive,
    Negative,
    Both,
}

Whether to only highlight pixels with positive contributions, negative or both. Defaults to POSITIVE.

Variants

Unspecified

Default value. This is the same as POSITIVE.

Positive

Highlights the pixels/outlines that were most influential to the model’s prediction.

Negative

Setting polarity to negative highlights areas that does not lead to the models’s current prediction.

Both

Shows both positive and negative attributions.

Implementations

impl Polarity[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of Polarity.

pub fn from_i32(value: i32) -> Option<Polarity>[src]

Converts an i32 to a Polarity, or None if value is not a valid variant.

Trait Implementations

impl Clone for Polarity[src]

impl Copy for Polarity[src]

impl Debug for Polarity[src]

impl Default for Polarity[src]

impl Eq for Polarity[src]

impl From<Polarity> for i32[src]

impl Hash for Polarity[src]

impl Ord for Polarity[src]

impl PartialEq<Polarity> for Polarity[src]

impl PartialOrd<Polarity> for Polarity[src]

impl StructuralEq for Polarity[src]

impl StructuralPartialEq for Polarity[src]

Auto Trait Implementations

impl RefUnwindSafe for Polarity

impl Send for Polarity

impl Sync for Polarity

impl Unpin for Polarity

impl UnwindSafe for Polarity

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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]