org.tensorflow.util.testlog.MetricEntryOrBuilder 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/util/test_log.proto
package org.tensorflow.util.testlog;
public interface MetricEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.MetricEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
* Metric name
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* Metric name
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Metric value
*
*
* double value = 2;
*/
double getValue();
/**
*
* The minimum acceptable value for the metric if specified
*
*
* .google.protobuf.DoubleValue min_value = 3;
*/
boolean hasMinValue();
/**
*
* The minimum acceptable value for the metric if specified
*
*
* .google.protobuf.DoubleValue min_value = 3;
*/
com.google.protobuf.DoubleValue getMinValue();
/**
*
* The minimum acceptable value for the metric if specified
*
*
* .google.protobuf.DoubleValue min_value = 3;
*/
com.google.protobuf.DoubleValueOrBuilder getMinValueOrBuilder();
/**
*
* The maximum acceptable value for the metric if specified
*
*
* .google.protobuf.DoubleValue max_value = 4;
*/
boolean hasMaxValue();
/**
*
* The maximum acceptable value for the metric if specified
*
*
* .google.protobuf.DoubleValue max_value = 4;
*/
com.google.protobuf.DoubleValue getMaxValue();
/**
*
* The maximum acceptable value for the metric if specified
*
*
* .google.protobuf.DoubleValue max_value = 4;
*/
com.google.protobuf.DoubleValueOrBuilder getMaxValueOrBuilder();
}