org.tensorflow.metadata.v0.WeightedCommonStatisticsOrBuilder 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 WeightedCommonStatisticsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.WeightedCommonStatistics)
com.google.protobuf.MessageOrBuilder {
/**
*
* Weighted number of examples not missing.
*
*
* double num_non_missing = 1;
* @return The numNonMissing.
*/
double getNumNonMissing();
/**
*
* Weighted number of examples missing.
* Note that if the weighted column is zero, this does not count
* as missing.
*
*
* double num_missing = 2;
* @return The numMissing.
*/
double getNumMissing();
/**
*
* average number of values, weighted by the number of examples.
*
*
* double avg_num_values = 3;
* @return The avgNumValues.
*/
double getAvgNumValues();
/**
*
* tot_num_values = avg_num_values * num_non_missing.
* This is calculated directly, so should have less numerical error.
*
*
* double tot_num_values = 4;
* @return The totNumValues.
*/
double getTotNumValues();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy