Package org.tensorflow.metadata.v0
Interface InfinityNormOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InfinityNorm,InfinityNorm.Builder
public interface InfinityNormOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetThreshold()The InfinityNorm is in the interval [0.0, 1.0] so sensible bounds should be in the interval [0.0, 1.0).booleanhasThreshold()The InfinityNorm is in the interval [0.0, 1.0] so sensible bounds should be in the interval [0.0, 1.0).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasThreshold
boolean hasThreshold()
The InfinityNorm is in the interval [0.0, 1.0] so sensible bounds should be in the interval [0.0, 1.0).
optional double threshold = 1;- Returns:
- Whether the threshold field is set.
-
getThreshold
double getThreshold()
The InfinityNorm is in the interval [0.0, 1.0] so sensible bounds should be in the interval [0.0, 1.0).
optional double threshold = 1;- Returns:
- The threshold.
-
-