Package org.tensorflow.metadata.v0
Interface DatasetConstraintsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatasetConstraints,DatasetConstraints.Builder
public interface DatasetConstraintsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetMinExamplesCount()Minimum number of examples in the dataset.NumericValueComparatorgetNumExamplesDriftComparator()Tests differences in number of examples between the current data and the previous span.NumericValueComparatorOrBuildergetNumExamplesDriftComparatorOrBuilder()Tests differences in number of examples between the current data and the previous span.NumericValueComparatorgetNumExamplesVersionComparator()Tests comparisions in number of examples between the current data and the previous version of that data.NumericValueComparatorOrBuildergetNumExamplesVersionComparatorOrBuilder()Tests comparisions in number of examples between the current data and the previous version of that data.booleanhasMinExamplesCount()Minimum number of examples in the dataset.booleanhasNumExamplesDriftComparator()Tests differences in number of examples between the current data and the previous span.booleanhasNumExamplesVersionComparator()Tests comparisions in number of examples between the current data and the previous version of that data.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasNumExamplesDriftComparator
boolean hasNumExamplesDriftComparator()
Tests differences in number of examples between the current data and the previous span.
optional .tensorflow.metadata.v0.NumericValueComparator num_examples_drift_comparator = 1;- Returns:
- Whether the numExamplesDriftComparator field is set.
-
getNumExamplesDriftComparator
NumericValueComparator getNumExamplesDriftComparator()
Tests differences in number of examples between the current data and the previous span.
optional .tensorflow.metadata.v0.NumericValueComparator num_examples_drift_comparator = 1;- Returns:
- The numExamplesDriftComparator.
-
getNumExamplesDriftComparatorOrBuilder
NumericValueComparatorOrBuilder getNumExamplesDriftComparatorOrBuilder()
Tests differences in number of examples between the current data and the previous span.
optional .tensorflow.metadata.v0.NumericValueComparator num_examples_drift_comparator = 1;
-
hasNumExamplesVersionComparator
boolean hasNumExamplesVersionComparator()
Tests comparisions in number of examples between the current data and the previous version of that data.
optional .tensorflow.metadata.v0.NumericValueComparator num_examples_version_comparator = 2;- Returns:
- Whether the numExamplesVersionComparator field is set.
-
getNumExamplesVersionComparator
NumericValueComparator getNumExamplesVersionComparator()
Tests comparisions in number of examples between the current data and the previous version of that data.
optional .tensorflow.metadata.v0.NumericValueComparator num_examples_version_comparator = 2;- Returns:
- The numExamplesVersionComparator.
-
getNumExamplesVersionComparatorOrBuilder
NumericValueComparatorOrBuilder getNumExamplesVersionComparatorOrBuilder()
Tests comparisions in number of examples between the current data and the previous version of that data.
optional .tensorflow.metadata.v0.NumericValueComparator num_examples_version_comparator = 2;
-
hasMinExamplesCount
boolean hasMinExamplesCount()
Minimum number of examples in the dataset.
optional int64 min_examples_count = 3;- Returns:
- Whether the minExamplesCount field is set.
-
getMinExamplesCount
long getMinExamplesCount()
Minimum number of examples in the dataset.
optional int64 min_examples_count = 3;- Returns:
- The minExamplesCount.
-
-