Package org.tensorflow.metadata.v0
Interface FeaturePresenceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeaturePresence,FeaturePresence.Builder
public interface FeaturePresenceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetMinCount()Minimum number of examples that have this feature.doublegetMinFraction()Minimum fraction of examples that have this feature.booleanhasMinCount()Minimum number of examples that have this feature.booleanhasMinFraction()Minimum fraction of examples that have this feature.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMinFraction
boolean hasMinFraction()
Minimum fraction of examples that have this feature.
optional double min_fraction = 1;- Returns:
- Whether the minFraction field is set.
-
getMinFraction
double getMinFraction()
Minimum fraction of examples that have this feature.
optional double min_fraction = 1;- Returns:
- The minFraction.
-
hasMinCount
boolean hasMinCount()
Minimum number of examples that have this feature.
optional int64 min_count = 2;- Returns:
- Whether the minCount field is set.
-
getMinCount
long getMinCount()
Minimum number of examples that have this feature.
optional int64 min_count = 2;- Returns:
- The minCount.
-
-