predict_savedmodel {tfdeploy} | R Documentation |
Predict using a SavedModel
Description
Runs a prediction over a saved model file, web API or graph object.
Usage
predict_savedmodel(instances, model, ...)
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 or graph object. A local path can be exported using A |
... |
See #' @section Implementations: |
See Also
export_savedmodel()
, serve_savedmodel()
, load_savedmodel()
Examples
## Not run:
# perform prediction based on an existing model
tfdeploy::predict_savedmodel(
list(rep(9, 784)),
system.file("models/tensorflow-mnist", package = "tfdeploy")
)
## End(Not run)