diff --git a/doc/Quick_Start_EN.md b/doc/Quick_Start_EN.md index f5bafe3cffd736142d48f51b9dcf7e98d506a057..36818bb233bde3d5484a909dcc88b9fc7c73c504 100644 --- a/doc/Quick_Start_EN.md +++ b/doc/Quick_Start_EN.md @@ -57,7 +57,7 @@ Here, `client.predict` function has two arguments. `feed` is a `python dict` wit Users can also put the data format processing logic on the server side, so that they can directly use curl to access the service, refer to the following case whose path is `Serving/examples/C++/fit_a_line` ``` -python3 -m paddle_serving_server.serve --model uci_housing_model --thread 10 --port 9292 --name uci +python3 -m paddle_serving_server.serve --model uci_housing_model --thread 10 --port 9292 ``` for client side, ```