Struct gapi_grpc::google::cloud::aiplatform::v1beta1::explanation_metadata::input_metadata::FeatureValueDomain[][src]

pub struct FeatureValueDomain {
    pub min_value: f32,
    pub max_value: f32,
    pub original_mean: f32,
    pub original_stddev: f32,
}

Domain details of the input feature value. Provides numeric information about the feature, such as its range (min, max). If the feature has been pre-processed, for example with z-scoring, then it provides information about how to recover the original feature. For example, if the input feature is an image and it has been pre-processed to obtain 0-mean and stddev = 1 values, then original_mean, and original_stddev refer to the mean and stddev of the original feature (e.g. image tensor) from which input feature (with mean = 0 and stddev = 1) was obtained.

Fields

min_value: f32

The minimum permissible value for this feature.

max_value: f32

The maximum permissible value for this feature.

original_mean: f32

If this input feature has been normalized to a mean value of 0, the original_mean specifies the mean value of the domain prior to normalization.

original_stddev: f32

If this input feature has been normalized to a standard deviation of 1.0, the original_stddev specifies the standard deviation of the domain prior to normalization.

Trait Implementations

impl Clone for FeatureValueDomain[src]

impl Debug for FeatureValueDomain[src]

impl Default for FeatureValueDomain[src]

impl Message for FeatureValueDomain[src]

impl PartialEq<FeatureValueDomain> for FeatureValueDomain[src]

impl StructuralPartialEq for FeatureValueDomain[src]

Auto Trait Implementations

impl RefUnwindSafe for FeatureValueDomain

impl Send for FeatureValueDomain

impl Sync for FeatureValueDomain

impl Unpin for FeatureValueDomain

impl UnwindSafe for FeatureValueDomain

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]