From 99f6a840f57c9764edf1660a4babc4b145474c65 Mon Sep 17 00:00:00 2001 From: Bin Lu Date: Thu, 16 Dec 2021 14:37:45 +0800 Subject: [PATCH] Update paddle_serving_deploy.md --- docs/zh_CN/inference_deployment/paddle_serving_deploy.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/zh_CN/inference_deployment/paddle_serving_deploy.md b/docs/zh_CN/inference_deployment/paddle_serving_deploy.md index dcab88d3..1e523fca 100644 --- a/docs/zh_CN/inference_deployment/paddle_serving_deploy.md +++ b/docs/zh_CN/inference_deployment/paddle_serving_deploy.md @@ -119,7 +119,7 @@ classification_web_service.py # 启动pipeline服务端的脚本 python3 classification_web_service.py &>log.txt & ``` 成功启动服务后,log.txt 中会打印类似如下日志 -![](../../../deploy/paddleserving/imgs/start_server.png) +![](https://github.com/Intsigstephon/PaddleClas/tree/release/2.3/deploy/paddleserving/imgs/start_server.png) - 发送请求: ```shell @@ -127,7 +127,7 @@ python3 classification_web_service.py &>log.txt & python3 pipeline_http_client.py ``` 成功运行后,模型预测的结果会打印在 cmd 窗口中,结果示例为: -![](../../../deploy/paddleserving/imgs/results.png) +![](https://github.com/Intsigstephon/PaddleClas/tree/release/2.3/deploy/paddleserving/imgs/results.png) ## 4.图像识别服务部署 @@ -213,14 +213,14 @@ recognition_web_service.py # 启动pipeline服务端的脚本 python3 recognition_web_service.py &>log.txt & ``` 成功启动服务后,log.txt 中会打印类似如下日志 -![](../../../deploy/paddleserving/imgs/start_server_shitu.png) +![](https://github.com/Intsigstephon/PaddleClas/tree/release/2.3/deploy/paddleserving/imgs/start_server_shitu.png) - 发送请求: ``` python3 pipeline_http_client.py ``` 成功运行后,模型预测的结果会打印在 cmd 窗口中,结果示例为: -![](../../../deploy/paddleserving/imgs/results_shitu.png) +![](https://github.com/Intsigstephon/PaddleClas/tree/release/2.3/deploy/paddleserving/imgs/results_shitu.png) ## 5.FAQ -- GitLab