Package org.tensorflow.metadata.v0
Interface DatasetFeatureStatisticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatasetFeatureStatistics,DatasetFeatureStatistics.Builder
public interface DatasetFeatureStatisticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CrossFeatureStatisticsgetCrossFeatures(int index)Cross feature statistics for the dataset.intgetCrossFeaturesCount()Cross feature statistics for the dataset.List<CrossFeatureStatistics>getCrossFeaturesList()Cross feature statistics for the dataset.CrossFeatureStatisticsOrBuildergetCrossFeaturesOrBuilder(int index)Cross feature statistics for the dataset.List<? extends CrossFeatureStatisticsOrBuilder>getCrossFeaturesOrBuilderList()Cross feature statistics for the dataset.FeatureNameStatisticsgetFeatures(int index)The feature statistics for the dataset.intgetFeaturesCount()The feature statistics for the dataset.List<FeatureNameStatistics>getFeaturesList()The feature statistics for the dataset.FeatureNameStatisticsOrBuildergetFeaturesOrBuilder(int index)The feature statistics for the dataset.List<? extends FeatureNameStatisticsOrBuilder>getFeaturesOrBuilderList()The feature statistics for the dataset.StringgetName()The name of the dataset.com.google.protobuf.ByteStringgetNameBytes()The name of the dataset.longgetNumExamples()The number of examples in the dataset.doublegetWeightedNumExamples()Only valid if the weight feature was specified.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The name of the dataset.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the dataset.
string name = 1;- Returns:
- The bytes for name.
-
getNumExamples
long getNumExamples()
The number of examples in the dataset.
uint64 num_examples = 2;- Returns:
- The numExamples.
-
getWeightedNumExamples
double getWeightedNumExamples()
Only valid if the weight feature was specified. Treats a missing weighted feature as zero.
double weighted_num_examples = 4;- Returns:
- The weightedNumExamples.
-
getFeaturesList
List<FeatureNameStatistics> getFeaturesList()
The feature statistics for the dataset.
repeated .tensorflow.metadata.v0.FeatureNameStatistics features = 3;
-
getFeatures
FeatureNameStatistics getFeatures(int index)
The feature statistics for the dataset.
repeated .tensorflow.metadata.v0.FeatureNameStatistics features = 3;
-
getFeaturesCount
int getFeaturesCount()
The feature statistics for the dataset.
repeated .tensorflow.metadata.v0.FeatureNameStatistics features = 3;
-
getFeaturesOrBuilderList
List<? extends FeatureNameStatisticsOrBuilder> getFeaturesOrBuilderList()
The feature statistics for the dataset.
repeated .tensorflow.metadata.v0.FeatureNameStatistics features = 3;
-
getFeaturesOrBuilder
FeatureNameStatisticsOrBuilder getFeaturesOrBuilder(int index)
The feature statistics for the dataset.
repeated .tensorflow.metadata.v0.FeatureNameStatistics features = 3;
-
getCrossFeaturesList
List<CrossFeatureStatistics> getCrossFeaturesList()
Cross feature statistics for the dataset.
repeated .tensorflow.metadata.v0.CrossFeatureStatistics cross_features = 5;
-
getCrossFeatures
CrossFeatureStatistics getCrossFeatures(int index)
Cross feature statistics for the dataset.
repeated .tensorflow.metadata.v0.CrossFeatureStatistics cross_features = 5;
-
getCrossFeaturesCount
int getCrossFeaturesCount()
Cross feature statistics for the dataset.
repeated .tensorflow.metadata.v0.CrossFeatureStatistics cross_features = 5;
-
getCrossFeaturesOrBuilderList
List<? extends CrossFeatureStatisticsOrBuilder> getCrossFeaturesOrBuilderList()
Cross feature statistics for the dataset.
repeated .tensorflow.metadata.v0.CrossFeatureStatistics cross_features = 5;
-
getCrossFeaturesOrBuilder
CrossFeatureStatisticsOrBuilder getCrossFeaturesOrBuilder(int index)
Cross feature statistics for the dataset.
repeated .tensorflow.metadata.v0.CrossFeatureStatistics cross_features = 5;
-
-