Package org.tensorflow.metadata.v0
Interface WeightedStringStatisticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WeightedStringStatistics,WeightedStringStatistics.Builder
public interface WeightedStringStatisticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RankHistogramgetRankHistogram()The rank histogram for the weighted values of the feature.RankHistogramOrBuildergetRankHistogramOrBuilder()The rank histogram for the weighted values of the feature.StringStatistics.FreqAndValuegetTopValues(int index)A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.intgetTopValuesCount()A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.List<StringStatistics.FreqAndValue>getTopValuesList()A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.StringStatistics.FreqAndValueOrBuildergetTopValuesOrBuilder(int index)A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.List<? extends StringStatistics.FreqAndValueOrBuilder>getTopValuesOrBuilderList()A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.booleanhasRankHistogram()The rank histogram for the weighted values of the feature.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTopValuesList
List<StringStatistics.FreqAndValue> getTopValuesList()
A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.
repeated .tensorflow.metadata.v0.StringStatistics.FreqAndValue top_values = 1;
-
getTopValues
StringStatistics.FreqAndValue getTopValues(int index)
A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.
repeated .tensorflow.metadata.v0.StringStatistics.FreqAndValue top_values = 1;
-
getTopValuesCount
int getTopValuesCount()
A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.
repeated .tensorflow.metadata.v0.StringStatistics.FreqAndValue top_values = 1;
-
getTopValuesOrBuilderList
List<? extends StringStatistics.FreqAndValueOrBuilder> getTopValuesOrBuilderList()
A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.
repeated .tensorflow.metadata.v0.StringStatistics.FreqAndValue top_values = 1;
-
getTopValuesOrBuilder
StringStatistics.FreqAndValueOrBuilder getTopValuesOrBuilder(int index)
A sorted list of the most-frequent values and their weighted frequencies, with the most-frequent being first.
repeated .tensorflow.metadata.v0.StringStatistics.FreqAndValue top_values = 1;
-
hasRankHistogram
boolean hasRankHistogram()
The rank histogram for the weighted values of the feature.
.tensorflow.metadata.v0.RankHistogram rank_histogram = 2;- Returns:
- Whether the rankHistogram field is set.
-
getRankHistogram
RankHistogram getRankHistogram()
The rank histogram for the weighted values of the feature.
.tensorflow.metadata.v0.RankHistogram rank_histogram = 2;- Returns:
- The rankHistogram.
-
getRankHistogramOrBuilder
RankHistogramOrBuilder getRankHistogramOrBuilder()
The rank histogram for the weighted values of the feature.
.tensorflow.metadata.v0.RankHistogram rank_histogram = 2;
-
-