org.tensorflow.framework.HistogramProtoOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto Show documentation
Show all versions of proto Show documentation
Java API for TensorFlow protocol buffers.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/framework/summary.proto
package org.tensorflow.framework;
public interface HistogramProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.HistogramProto)
com.google.protobuf.MessageOrBuilder {
/**
* double min = 1;
*/
double getMin();
/**
* double max = 2;
*/
double getMax();
/**
* double num = 3;
*/
double getNum();
/**
* double sum = 4;
*/
double getSum();
/**
* 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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy