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

    Modifier and Type
    Method
    Description
    float
    The maximum permissible value for this feature.
    float
    The minimum permissible value for this feature.
    float
    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
    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.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • 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.