org.tensorflow.metadata.v0.NumericStatisticsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/statistics.proto
// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;
public interface NumericStatisticsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.NumericStatistics)
com.google.protobuf.MessageOrBuilder {
/**
* .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
* @return Whether the commonStats field is set.
*/
boolean hasCommonStats();
/**
* .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
* @return The commonStats.
*/
org.tensorflow.metadata.v0.CommonStatistics getCommonStats();
/**
* .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
*/
org.tensorflow.metadata.v0.CommonStatisticsOrBuilder getCommonStatsOrBuilder();
/**
*
* The mean of the values
*
*
* double mean = 2;
* @return The mean.
*/
double getMean();
/**
*
* The standard deviation of the values
*
*
* double std_dev = 3;
* @return The stdDev.
*/
double getStdDev();
/**
*
* The number of values that equal 0
*
*
* uint64 num_zeros = 4;
* @return The numZeros.
*/
long getNumZeros();
/**
*
* The minimum value
*
*
* double min = 5;
* @return The min.
*/
double getMin();
/**
*
* The median value
*
*
* double median = 6;
* @return The median.
*/
double getMedian();
/**
*
* The maximum value
*
*
* double max = 7;
* @return The max.
*/
double getMax();
/**
*
* The histogram(s) of the feature values.
*
*
* repeated .tensorflow.metadata.v0.Histogram histograms = 8;
*/
java.util.List
getHistogramsList();
/**
*
* The histogram(s) of the feature values.
*
*
* repeated .tensorflow.metadata.v0.Histogram histograms = 8;
*/
org.tensorflow.metadata.v0.Histogram getHistograms(int index);
/**
*
* The histogram(s) of the feature values.
*
*
* repeated .tensorflow.metadata.v0.Histogram histograms = 8;
*/
int getHistogramsCount();
/**
*
* The histogram(s) of the feature values.
*
*
* repeated .tensorflow.metadata.v0.Histogram histograms = 8;
*/
java.util.List extends org.tensorflow.metadata.v0.HistogramOrBuilder>
getHistogramsOrBuilderList();
/**
*
* The histogram(s) of the feature values.
*
*
* repeated .tensorflow.metadata.v0.Histogram histograms = 8;
*/
org.tensorflow.metadata.v0.HistogramOrBuilder getHistogramsOrBuilder(
int index);
/**
*
* Weighted statistics for the feature, if the values have weights.
*
*
* .tensorflow.metadata.v0.WeightedNumericStatistics weighted_numeric_stats = 9;
* @return Whether the weightedNumericStats field is set.
*/
boolean hasWeightedNumericStats();
/**
*
* Weighted statistics for the feature, if the values have weights.
*
*
* .tensorflow.metadata.v0.WeightedNumericStatistics weighted_numeric_stats = 9;
* @return The weightedNumericStats.
*/
org.tensorflow.metadata.v0.WeightedNumericStatistics getWeightedNumericStats();
/**
*
* Weighted statistics for the feature, if the values have weights.
*
*
* .tensorflow.metadata.v0.WeightedNumericStatistics weighted_numeric_stats = 9;
*/
org.tensorflow.metadata.v0.WeightedNumericStatisticsOrBuilder getWeightedNumericStatsOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy