Package com.google.cloud.aiplatform.v1
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 TensorgetOutputs(int index)The prediction output.intgetOutputsCount()The prediction output.List<Tensor>getOutputsList()The prediction output.TensorOrBuildergetOutputsOrBuilder(int index)The prediction output.List<? extends TensorOrBuilder>getOutputsOrBuilderList()The prediction output.TensorgetParameters()The parameters that govern the prediction.TensorOrBuildergetParametersOrBuilder()The parameters that govern the prediction.booleanhasParameters()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.v1.Tensor outputs = 1;
-
getOutputs
Tensor getOutputs(int index)
The prediction output.
repeated .google.cloud.aiplatform.v1.Tensor outputs = 1;
-
getOutputsCount
int getOutputsCount()
The prediction output.
repeated .google.cloud.aiplatform.v1.Tensor outputs = 1;
-
getOutputsOrBuilderList
List<? extends TensorOrBuilder> getOutputsOrBuilderList()
The prediction output.
repeated .google.cloud.aiplatform.v1.Tensor outputs = 1;
-
getOutputsOrBuilder
TensorOrBuilder getOutputsOrBuilder(int index)
The prediction output.
repeated .google.cloud.aiplatform.v1.Tensor outputs = 1;
-
hasParameters
boolean hasParameters()
The parameters that govern the prediction.
.google.cloud.aiplatform.v1.Tensor parameters = 2;- Returns:
- Whether the parameters field is set.
-
getParameters
Tensor getParameters()
The parameters that govern the prediction.
.google.cloud.aiplatform.v1.Tensor parameters = 2;- Returns:
- The parameters.
-
getParametersOrBuilder
TensorOrBuilder getParametersOrBuilder()
The parameters that govern the prediction.
.google.cloud.aiplatform.v1.Tensor parameters = 2;
-
-