Package org.tensorflow.metadata.v0
Interface WeightedNumericStatisticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WeightedNumericStatistics,WeightedNumericStatistics.Builder
public interface WeightedNumericStatisticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistogramgetHistograms(int index)The histogram(s) of the weighted feature values.intgetHistogramsCount()The histogram(s) of the weighted feature values.List<Histogram>getHistogramsList()The histogram(s) of the weighted feature values.HistogramOrBuildergetHistogramsOrBuilder(int index)The histogram(s) of the weighted feature values.List<? extends HistogramOrBuilder>getHistogramsOrBuilderList()The histogram(s) of the weighted feature values.doublegetMean()The weighted mean of the valuesdoublegetMedian()The weighted median of the valuesdoublegetStdDev()The weighted standard deviation of the values-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMean
double getMean()
The weighted mean of the values
double mean = 1;- Returns:
- The mean.
-
getStdDev
double getStdDev()
The weighted standard deviation of the values
double std_dev = 2;- Returns:
- The stdDev.
-
getMedian
double getMedian()
The weighted median of the values
double median = 3;- Returns:
- The median.
-
getHistogramsList
List<Histogram> getHistogramsList()
The histogram(s) of the weighted feature values.
repeated .tensorflow.metadata.v0.Histogram histograms = 4;
-
getHistograms
Histogram getHistograms(int index)
The histogram(s) of the weighted feature values.
repeated .tensorflow.metadata.v0.Histogram histograms = 4;
-
getHistogramsCount
int getHistogramsCount()
The histogram(s) of the weighted feature values.
repeated .tensorflow.metadata.v0.Histogram histograms = 4;
-
getHistogramsOrBuilderList
List<? extends HistogramOrBuilder> getHistogramsOrBuilderList()
The histogram(s) of the weighted feature values.
repeated .tensorflow.metadata.v0.Histogram histograms = 4;
-
getHistogramsOrBuilder
HistogramOrBuilder getHistogramsOrBuilder(int index)
The histogram(s) of the weighted feature values.
repeated .tensorflow.metadata.v0.Histogram histograms = 4;
-
-