diff --git a/python/examples/blazeface/README.md b/python/examples/blazeface/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f569841ce4a3ae69b1ff16041f7fb7d4617177f7 --- /dev/null +++ b/python/examples/blazeface/README.md @@ -0,0 +1,23 @@ +# Blazeface + +## Get Model +``` +python -m paddle_serving_app.package --get_model blazeface +tar -xzvf blazeface.tar.gz +``` + +## RPC Service + +### Start Service + +``` +python -m paddle_serving_server.serve --model serving_server --port 9494 +``` + +### Client Prediction + +``` +python test_client.py serving_client/serving_client_conf.prototxt test.jpg +``` + +the result is in `output` folder, including a json file and image file with bounding boxes.