org.tensorflow.metadata.v0.DatasetConstraintsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/schema.proto
// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;
public interface DatasetConstraintsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.DatasetConstraints)
com.google.protobuf.MessageOrBuilder {
/**
*
* Tests differences in number of examples between the current data and the
* previous span.
*
*
* optional .tensorflow.metadata.v0.NumericValueComparator num_examples_drift_comparator = 1;
* @return Whether the numExamplesDriftComparator field is set.
*/
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;
* @return The numExamplesDriftComparator.
*/
org.tensorflow.metadata.v0.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;
*/
org.tensorflow.metadata.v0.NumericValueComparatorOrBuilder getNumExamplesDriftComparatorOrBuilder();
/**
*
* 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;
* @return Whether the numExamplesVersionComparator field is set.
*/
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;
* @return The numExamplesVersionComparator.
*/
org.tensorflow.metadata.v0.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;
*/
org.tensorflow.metadata.v0.NumericValueComparatorOrBuilder getNumExamplesVersionComparatorOrBuilder();
/**
*
* Minimum number of examples in the dataset.
*
*
* optional int64 min_examples_count = 3;
* @return Whether the minExamplesCount field is set.
*/
boolean hasMinExamplesCount();
/**
*
* Minimum number of examples in the dataset.
*
*
* optional int64 min_examples_count = 3;
* @return The minExamplesCount.
*/
long getMinExamplesCount();
/**
*
* Maximum number of examples in the dataset.
*
*
* optional int64 max_examples_count = 4;
* @return Whether the maxExamplesCount field is set.
*/
boolean hasMaxExamplesCount();
/**
*
* Maximum number of examples in the dataset.
*
*
* optional int64 max_examples_count = 4;
* @return The maxExamplesCount.
*/
long getMaxExamplesCount();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy