org.tensorflow.framework.HistogramProtoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: summary.proto
package org.tensorflow.framework;
public interface HistogramProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.HistogramProto)
com.google.protobuf.MessageOrBuilder {
/**
* optional double min = 1;
*/
double getMin();
/**
* optional double max = 2;
*/
double getMax();
/**
* optional double num = 3;
*/
double getNum();
/**
* optional double sum = 4;
*/
double getSum();
/**
* optional double sum_squares = 5;
*/
double getSumSquares();
/**
*
* Parallel arrays encoding the bucket boundaries and the bucket values.
* bucket(i) is the count for the bucket i. The range for
* a bucket is:
* i == 0: -DBL_MAX .. bucket_limit(0)
* i != 0: bucket_limit(i-1) .. bucket_limit(i)
*
*
* repeated double bucket_limit = 6 [packed = true];
*/
java.util.List getBucketLimitList();
/**
*
* Parallel arrays encoding the bucket boundaries and the bucket values.
* bucket(i) is the count for the bucket i. The range for
* a bucket is:
* i == 0: -DBL_MAX .. bucket_limit(0)
* i != 0: bucket_limit(i-1) .. bucket_limit(i)
*
*
* repeated double bucket_limit = 6 [packed = true];
*/
int getBucketLimitCount();
/**
*
* Parallel arrays encoding the bucket boundaries and the bucket values.
* bucket(i) is the count for the bucket i. The range for
* a bucket is:
* i == 0: -DBL_MAX .. bucket_limit(0)
* i != 0: bucket_limit(i-1) .. bucket_limit(i)
*
*
* repeated double bucket_limit = 6 [packed = true];
*/
double getBucketLimit(int index);
/**
* repeated double bucket = 7 [packed = true];
*/
java.util.List getBucketList();
/**
* repeated double bucket = 7 [packed = true];
*/
int getBucketCount();
/**
* repeated double bucket = 7 [packed = true];
*/
double getBucket(int index);
}