org.tensorflow.metadata.v0.CrossFeatureStatisticsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/statistics.proto
// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;
public interface CrossFeatureStatisticsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.CrossFeatureStatistics)
com.google.protobuf.MessageOrBuilder {
/**
*
* The path of feature x.
*
*
* .tensorflow.metadata.v0.Path path_x = 1;
* @return Whether the pathX field is set.
*/
boolean hasPathX();
/**
*
* The path of feature x.
*
*
* .tensorflow.metadata.v0.Path path_x = 1;
* @return The pathX.
*/
org.tensorflow.metadata.v0.Path getPathX();
/**
*
* The path of feature x.
*
*
* .tensorflow.metadata.v0.Path path_x = 1;
*/
org.tensorflow.metadata.v0.PathOrBuilder getPathXOrBuilder();
/**
*
* The path of feature y.
*
*
* .tensorflow.metadata.v0.Path path_y = 2;
* @return Whether the pathY field is set.
*/
boolean hasPathY();
/**
*
* The path of feature y.
*
*
* .tensorflow.metadata.v0.Path path_y = 2;
* @return The pathY.
*/
org.tensorflow.metadata.v0.Path getPathY();
/**
*
* The path of feature y.
*
*
* .tensorflow.metadata.v0.Path path_y = 2;
*/
org.tensorflow.metadata.v0.PathOrBuilder getPathYOrBuilder();
/**
*
* Number of occurrences of this feature cross in the data. If any of
* the features in the cross is missing, the example is ignored.
*
*
* uint64 count = 3;
* @return The count.
*/
long getCount();
/**
* .tensorflow.metadata.v0.NumericCrossStatistics num_cross_stats = 4;
* @return Whether the numCrossStats field is set.
*/
boolean hasNumCrossStats();
/**
* .tensorflow.metadata.v0.NumericCrossStatistics num_cross_stats = 4;
* @return The numCrossStats.
*/
org.tensorflow.metadata.v0.NumericCrossStatistics getNumCrossStats();
/**
* .tensorflow.metadata.v0.NumericCrossStatistics num_cross_stats = 4;
*/
org.tensorflow.metadata.v0.NumericCrossStatisticsOrBuilder getNumCrossStatsOrBuilder();
/**
* .tensorflow.metadata.v0.CategoricalCrossStatistics categorical_cross_stats = 5;
* @return Whether the categoricalCrossStats field is set.
*/
boolean hasCategoricalCrossStats();
/**
* .tensorflow.metadata.v0.CategoricalCrossStatistics categorical_cross_stats = 5;
* @return The categoricalCrossStats.
*/
org.tensorflow.metadata.v0.CategoricalCrossStatistics getCategoricalCrossStats();
/**
* .tensorflow.metadata.v0.CategoricalCrossStatistics categorical_cross_stats = 5;
*/
org.tensorflow.metadata.v0.CategoricalCrossStatisticsOrBuilder getCategoricalCrossStatsOrBuilder();
org.tensorflow.metadata.v0.CrossFeatureStatistics.CrossStatsCase getCrossStatsCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy