Interface StreamingPredictResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StreamingPredictResponse
,StreamingPredictResponse.Builder
public interface StreamingPredictResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tensor
getOutputs(int index)
The prediction output.int
getOutputsCount()
The prediction output.List<Tensor>
getOutputsList()
The prediction output.TensorOrBuilder
getOutputsOrBuilder(int index)
The prediction output.List<? extends TensorOrBuilder>
getOutputsOrBuilderList()
The prediction output.Tensor
getParameters()
The parameters that govern the prediction.TensorOrBuilder
getParametersOrBuilder()
The parameters that govern the prediction.boolean
hasParameters()
The parameters that govern the prediction.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOutputsList
List<Tensor> getOutputsList()
The prediction output.
repeated .google.cloud.aiplatform.v1beta1.Tensor outputs = 1;
-
getOutputs
Tensor getOutputs(int index)
The prediction output.
repeated .google.cloud.aiplatform.v1beta1.Tensor outputs = 1;
-
getOutputsCount
int getOutputsCount()
The prediction output.
repeated .google.cloud.aiplatform.v1beta1.Tensor outputs = 1;
-
getOutputsOrBuilderList
List<? extends TensorOrBuilder> getOutputsOrBuilderList()
The prediction output.
repeated .google.cloud.aiplatform.v1beta1.Tensor outputs = 1;
-
getOutputsOrBuilder
TensorOrBuilder getOutputsOrBuilder(int index)
The prediction output.
repeated .google.cloud.aiplatform.v1beta1.Tensor outputs = 1;
-
hasParameters
boolean hasParameters()
The parameters that govern the prediction.
.google.cloud.aiplatform.v1beta1.Tensor parameters = 2;
- Returns:
- Whether the parameters field is set.
-
getParameters
Tensor getParameters()
The parameters that govern the prediction.
.google.cloud.aiplatform.v1beta1.Tensor parameters = 2;
- Returns:
- The parameters.
-
getParametersOrBuilder
TensorOrBuilder getParametersOrBuilder()
The parameters that govern the prediction.
.google.cloud.aiplatform.v1beta1.Tensor parameters = 2;
-
-