Skip to content

Instantly share code, notes, and snippets.

@masroorhasan
Created February 24, 2019 20:25
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masroorhasan/8e728917ca23328895499179f4575bb8 to your computer and use it in GitHub Desktop.
Save masroorhasan/8e728917ca23328895499179f4575bb8 to your computer and use it in GitHub Desktop.
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