All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.framework.HistogramProtoOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
// 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)
    org.nd4j.shade.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 - 2024 Weber Informatics LLC | Privacy Policy