This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
package tensorflow.serving; | |
option cc_enable_arenas = true; | |
import "protos/tensorflow_serving/apis/predict.proto"; | |
// open source marker; do not remove | |
// PredictionService provides access to machine-learned models loaded by | |
// model_servers. | |
service PredictionService { | |
// Predict -- provides access to loaded TensorFlow model. | |
rpc Predict(PredictRequest) returns (PredictResponse); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment