Package org.tensorflow.metadata.v0
Interface RankHistogramOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RankHistogram,RankHistogram.Builder
public interface RankHistogramOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RankHistogram.BucketgetBuckets(int index)A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.intgetBucketsCount()A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.List<RankHistogram.Bucket>getBucketsList()A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.RankHistogram.BucketOrBuildergetBucketsOrBuilder(int index)A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.List<? extends RankHistogram.BucketOrBuilder>getBucketsOrBuilderList()A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.StringgetName()An optional descriptive name of the histogram, to be used for labeling.com.google.protobuf.ByteStringgetNameBytes()An optional descriptive name of the histogram, to be used for labeling.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBucketsList
List<RankHistogram.Bucket> getBucketsList()
A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.
repeated .tensorflow.metadata.v0.RankHistogram.Bucket buckets = 1;
-
getBuckets
RankHistogram.Bucket getBuckets(int index)
A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.
repeated .tensorflow.metadata.v0.RankHistogram.Bucket buckets = 1;
-
getBucketsCount
int getBucketsCount()
A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.
repeated .tensorflow.metadata.v0.RankHistogram.Bucket buckets = 1;
-
getBucketsOrBuilderList
List<? extends RankHistogram.BucketOrBuilder> getBucketsOrBuilderList()
A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.
repeated .tensorflow.metadata.v0.RankHistogram.Bucket buckets = 1;
-
getBucketsOrBuilder
RankHistogram.BucketOrBuilder getBucketsOrBuilder(int index)
A list of buckets in the histogram, sorted from lowest-ranked bucket to highest-ranked bucket.
repeated .tensorflow.metadata.v0.RankHistogram.Bucket buckets = 1;
-
getName
String getName()
An optional descriptive name of the histogram, to be used for labeling.
string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
An optional descriptive name of the histogram, to be used for labeling.
string name = 2;- Returns:
- The bytes for name.
-
-