package tensorflow.serving

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

service PredictionService

prediction_service.proto:15

open source marker; do not remove PredictionService provides access to machine-learned models loaded by model_servers.

message Class

classification.proto:11

A single class.

Used in: Classifications

message ClassificationResult

classification.proto:26

Contains one result per input example, in the same order as the input in ClassificationRequest.

Used in: ClassificationResponse, InferenceResult

message Classifications

classification.proto:20

List of classes for a single item (tensorflow.Example).

Used in: ClassificationResult

message ExampleList

input.proto:15

Specifies one or more fully independent input Examples. See examples at: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/example/example.proto

Used in: Input

message ExampleListWithContext

input.proto:66

Specifies one or more independent input Examples, with a common context Example. The common use case for context is to cleanly and optimally specify some features that are common across multiple examples. See example below with a search query as the context and multiple restaurants to perform some inference on. context: { feature: { key : "query" value: { bytes_list: { value: [ "pizza" ] } } } } examples: { feature: { key : "cuisine" value: { bytes_list: { value: [ "Pizzeria" ] } } } } examples: { feature: { key : "cuisine" value: { bytes_list: { value: [ "Taqueria" ] } } } } Implementations of ExampleListWithContext merge the context Example into each of the Examples. Note that feature keys must not be duplicated between the Examples and context Example, or the behavior is undefined. See also: tensorflow/core/example/example.proto https://developers.google.com/protocol-buffers/docs/proto3#maps

Used in: Input

message InferenceResult

inference.proto:33

Inference result, matches the type of request or is an error.

Used in: MultiInferenceResponse

message InferenceTask

inference.proto:23

Inference request such as classification, regression, etc...

Used in: MultiInferenceRequest

message Input

input.proto:71

Used in: ClassificationRequest, MultiInferenceRequest, RegressionRequest

message ModelSpec

model.proto:9

Metadata for an inference request such as the model name and version.

Used in: ClassificationRequest, GetModelMetadataRequest, GetModelMetadataResponse, InferenceResult, InferenceTask, PredictRequest, RegressionRequest

message Regression

regression.proto:11

Regression result for a single item (tensorflow.Example).

Used in: RegressionResult

message RegressionResult

regression.proto:17

Contains one result per input example, in the same order as the input in RegressionRequest.

Used in: InferenceResult, RegressionResponse

message SignatureDefMap

get_model_metadata.proto:11

Message returned for "signature_def" field.