From ec6b19eb3561f7effa96972f41fd7b9fdef7bbb1 Mon Sep 17 00:00:00 2001 From: HtdrogenSulfate <490868991@qq.com> Date: Tue, 14 Jun 2022 08:03:43 +0000 Subject: [PATCH] polish docs --- deploy/paddleserving/readme_en.md | 4 ++-- deploy/paddleserving/recognition/readme_en.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/paddleserving/readme_en.md b/deploy/paddleserving/readme_en.md index 55643f75..902f0c4e 100644 --- a/deploy/paddleserving/readme_en.md +++ b/deploy/paddleserving/readme_en.md @@ -215,8 +215,8 @@ Different from Python Serving, the C++ Serving client calls C++ OP to predict, s ```log prediction: daisy, probability: 0.9341399073600769 ``` -- turn off the service -If the service program is running in the foreground, you can press `Ctrl+C` to terminate the server program; if it is running in the background, you can use the kill command to close related processes, or you can execute the following command in the path where the service program is started to terminate the server program: +- close the service: + If the service program is running in the foreground, you can press `Ctrl+C` to terminate the server program; if it is running in the background, you can use the kill command to close related processes, or you can execute the following command in the path where the service program is started to terminate the server program: ```bash python3.7 -m paddle_serving_server.serve stop ``` diff --git a/deploy/paddleserving/recognition/readme_en.md b/deploy/paddleserving/recognition/readme_en.md index e2719e64..e402f485 100644 --- a/deploy/paddleserving/recognition/readme_en.md +++ b/deploy/paddleserving/recognition/readme_en.md @@ -236,8 +236,8 @@ Different from Python Serving, the C++ Serving client calls C++ OP to predict, s [{'bbox': [345, 95, 524, 585], 'rec_docs': 'Red Bull-Enhanced', 'rec_scores': 0.8073724}] ``` -- turn off the service -If the service program is running in the foreground, you can press `Ctrl+C` to terminate the server program; if it is running in the background, you can use the kill command to close related processes, or you can execute the following command in the path where the service program is started to terminate the server program: +- close the service: + If the service program is running in the foreground, you can press `Ctrl+C` to terminate the server program; if it is running in the background, you can use the kill command to close related processes, or you can execute the following command in the path where the service program is started to terminate the server program: ```bash python3.7 -m paddle_serving_server.serve stop ``` -- GitLab