Interface TabularRegressionPredictionResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TabularRegressionPredictionResult,TabularRegressionPredictionResult.Builder
public interface TabularRegressionPredictionResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetLowerBound()The lower bound of the prediction interval.floatgetUpperBound()The upper bound of the prediction interval.floatgetValue()The regression value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValue
float getValue()
The regression value.
float value = 1;- Returns:
- The value.
-
getLowerBound
float getLowerBound()
The lower bound of the prediction interval.
float lower_bound = 2;- Returns:
- The lowerBound.
-
getUpperBound
float getUpperBound()
The upper bound of the prediction interval.
float upper_bound = 3;- Returns:
- The upperBound.
-
-