Package com.google.cloud.aiplatform.v1
Interface ExplanationMetadata.InputMetadata.FeatureValueDomainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExplanationMetadata.InputMetadata.FeatureValueDomain
,ExplanationMetadata.InputMetadata.FeatureValueDomain.Builder
- Enclosing class:
- ExplanationMetadata.InputMetadata
public static interface ExplanationMetadata.InputMetadata.FeatureValueDomainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getMaxValue()
The maximum permissible value for this feature.float
getMinValue()
The minimum permissible value for this feature.float
getOriginalMean()
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.float
getOriginalStddev()
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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMinValue
float getMinValue()
The minimum permissible value for this feature.
float min_value = 1;
- Returns:
- The minValue.
-
getMaxValue
float getMaxValue()
The maximum permissible value for this feature.
float max_value = 2;
- Returns:
- The maxValue.
-
getOriginalMean
float getOriginalMean()
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.
float original_mean = 3;
- Returns:
- The originalMean.
-
getOriginalStddev
float getOriginalStddev()
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.
float original_stddev = 4;
- Returns:
- The originalStddev.
-
-