Class RemoteInference.Invoke<InputT extends BaseInput,OutputT extends BaseResponse>
java.lang.Object
org.apache.beam.sdk.transforms.PTransform<PCollection<InputT>,PCollection<Iterable<PredictionResult<InputT,OutputT>>>>
org.apache.beam.sdk.ml.inference.remote.RemoteInference.Invoke<InputT,OutputT>
- All Implemented Interfaces:
Serializable,HasDisplayData
- Enclosing class:
RemoteInference
public abstract static class RemoteInference.Invoke<InputT extends BaseInput,OutputT extends BaseResponse>
extends PTransform<PCollection<InputT>,PCollection<Iterable<PredictionResult<InputT,OutputT>>>>
- See Also:
-
Field Summary
Fields inherited from class org.apache.beam.sdk.transforms.PTransform
annotations, displayData, name, resourceHints -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionexpand(PCollection<InputT> input) Override this method to specify how thisPTransformshould be expanded on the givenInputT.handler(Class<? extends BaseModelHandler<?, InputT, OutputT>> modelHandler) Model handler class for inference.withParameters(BaseModelParameters modelParameters) Configures the parameters for model initialization.Methods inherited from class org.apache.beam.sdk.transforms.PTransform
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validate
-
Constructor Details
-
Invoke
public Invoke()
-
-
Method Details
-
handler
public RemoteInference.Invoke<InputT,OutputT> handler(Class<? extends BaseModelHandler<?, InputT, OutputT>> modelHandler) Model handler class for inference. -
withParameters
Configures the parameters for model initialization. -
expand
Description copied from class:PTransformOverride this method to specify how thisPTransformshould be expanded on the givenInputT.NOTE: This method should not be called directly. Instead apply the
PTransformshould be applied to theInputTusing theapplymethod.Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
- Specified by:
expandin classPTransform<PCollection<InputT extends BaseInput>,PCollection<Iterable<PredictionResult<InputT extends BaseInput, OutputT extends BaseResponse>>>>
-