From 290b6e3267ef60d1545e77eea843b3fb89580f50 Mon Sep 17 00:00:00 2001 From: Dong Daxiang <35550832+guru4elephant@users.noreply.github.com> Date: Sun, 22 Mar 2020 06:41:37 +0800 Subject: [PATCH] Update SAVE.md --- doc/SAVE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/SAVE.md b/doc/SAVE.md index d2cb8298..59464a4e 100644 --- a/doc/SAVE.md +++ b/doc/SAVE.md @@ -7,7 +7,7 @@ serving_io.save_model("imdb_model", "imdb_client_conf", fluid.default_main_program()) ``` `imdb_model` is the server side model with serving configurations. `imdb_client_conf` is the client rpc configurations. Serving has a -dictionary for `Feed` and `Fetch` variables for client to assign. An alias name can be defined for each variable. An example of how to use alias name +dictionary for `Feed` and `Fetch` variables for client to assign. In the example, `{"words": data}` is the feed dict that specify the input of saved inference model. `{"prediction": prediction}` is the fetch dic that specify the output of saved inference model. An alias name can be defined for feed and fetch variables. An example of how to use alias name is as follows: ``` python from paddle_serving_client import Client -- GitLab