diff --git a/deploy/paddleserving/readme_en.md b/deploy/paddleserving/readme_en.md index 55643f7537c7de1a000787df0fa7784980c18abe..902f0c4e45758de4bc92076f2ce4bcf7508a36df 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 e2719e64b4dc7f85959b64a6713d230e5dbffa93..e402f48548fae5c90d6c8f34383c8e4b185ef940 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 ```