PaddleClas/deploy/paddleserving/recognition/run_cpp_serving.sh

8 lines
325 B
Bash
Raw Normal View History

2021-12-29 19:01:52 +08:00
nohup python3 -m paddle_serving_server.serve \
2021-12-29 19:10:47 +08:00
--model ../../models/picodet_PPLCNet_x2_5_mainbody_lite_v1.0_serving \
2021-12-29 19:01:52 +08:00
--port 9293 >>log_mainbody_detection.txt 1&>2 &
nohup python3 -m paddle_serving_server.serve \
2021-12-29 19:10:47 +08:00
--model ../../models/general_PPLCNet_x2_5_lite_v1.0_serving \
2021-12-29 19:01:52 +08:00
--port 9294 >>log_feature_extraction.txt 1&>2 &