Predict using a Loaded SavedModel
Performs a prediction using a SavedModel model already loaded using
load_savedmodel()
.
# S3 method for graph_prediction
predict_savedmodel(instances, model, sess,
signature_name = "serving_default", ...)
Arguments
instances | A list of prediction instances to be passed as input tensors to the service. Even for single predictions, a list with one entry is expected. |
model | The model as a local path, a REST url, CloudML name or graph object. A local path can be exported using Notice that predicting over a CloudML model requires a A |
sess | The active TensorFlow session. |
signature_name | The named entry point to use in the model for prediction. |
... | See #' @section Implementations:
|