pub struct GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain {
pub max_value: Option<f32>,
pub original_stddev: Option<f32>,
pub min_value: Option<f32>,
pub original_mean: Option<f32>,
}Expand description
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.
This type is not used in any activity, and only used as part of another schema.
Fields§
§max_value: Option<f32>The maximum permissible value for this feature.
original_stddev: Option<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.
min_value: Option<f32>The minimum permissible value for this feature.
original_mean: Option<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.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl Clone for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
Source§fn clone(
&self,
) -> GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
fn clone( &self, ) -> GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl Default for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
Source§fn default() -> GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
fn default() -> GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl RefUnwindSafe for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl Send for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl Sync for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl Unpin for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
impl UnwindSafe for GoogleCloudAiplatformV1ExplanationMetadataInputMetadataFeatureValueDomain
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more