Package

io.hydrosphere.serving.tensorflow.api

predict

Permalink

package predict

Visibility
  1. Public
  2. All

Type Members

  1. final case class PredictRequest(modelSpec: Option[ModelSpec] = None, inputs: Map[String, TensorProto] = ...) extends GeneratedMessage with Message[PredictRequest] with Updatable[PredictRequest] with Product with Serializable

    Permalink

    PredictRequest specifies which TensorFlow model to run, as well as how inputs are mapped to tensors and how outputs are filtered before returning to user.

    PredictRequest specifies which TensorFlow model to run, as well as how inputs are mapped to tensors and how outputs are filtered before returning to user.

    modelSpec

    Model Specification.

    inputs

    Input tensors. Names of input tensor are alias names. The mapping from aliases to real input tensor names is stored in the SavedModel export as a prediction SignatureDef under the 'inputs' field.

    Annotations
    @SerialVersionUID()
  2. final case class PredictResponse(outputs: Map[String, TensorProto] = ..., internalInfo: Map[String, TensorProto] = ...) extends GeneratedMessage with Message[PredictResponse] with Updatable[PredictResponse] with Product with Serializable

    Permalink

    Response for PredictRequest on successful run.

    Response for PredictRequest on successful run.

    outputs

    Output tensors.

    Annotations
    @SerialVersionUID()

Value Members

  1. object PredictProto extends GeneratedFileObject

    Permalink
  2. object PredictRequest extends GeneratedMessageCompanion[PredictRequest] with Serializable

    Permalink
  3. object PredictResponse extends GeneratedMessageCompanion[PredictResponse] with Serializable

    Permalink

Ungrouped