Class TensorFlowServingConfiguration

java.lang.Object
org.apache.camel.component.tensorflow.serving.TensorFlowServingConfiguration
All Implemented Interfaces:
Cloneable

@UriParams @Configurer public class TensorFlowServingConfiguration extends Object implements Cloneable
  • Constructor Details

    • TensorFlowServingConfiguration

      public TensorFlowServingConfiguration()
  • Method Details

    • getTarget

      public String getTarget()
    • setTarget

      public void setTarget(String target)
      The target URI of the client. See: https://grpc.github.io/grpc-java/javadoc/io/grpc/Grpc.html#newChannelBuilder%28java.lang.String,io.grpc.ChannelCredentials%29
    • getCredentials

      public io.grpc.ChannelCredentials getCredentials()
    • setCredentials

      public void setCredentials(io.grpc.ChannelCredentials credentials)
      The credentials of the client.
    • getModelName

      public String getModelName()
    • setModelName

      public void setModelName(String modelName)
      Required servable name.
    • getModelVersion

      public Long getModelVersion()
    • setModelVersion

      public void setModelVersion(Long modelVersion)
      Optional choice of which version of the model to use. Use this specific version number.
    • getModelVersionLabel

      public String getModelVersionLabel()
    • setModelVersionLabel

      public void setModelVersionLabel(String modelVersionLabel)
      Optional choice of which version of the model to use. Use the version associated with the given label.
    • getSignatureName

      public String getSignatureName()
    • setSignatureName

      public void setSignatureName(String signatureName)
      A named signature to evaluate. If unspecified, the default signature will be used.
    • copy