8 lines
325 B
Bash
Raw Normal View History

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