提交 43395230 编写于 作者: M MRXLT

update readme

上级 8babe7c5
# Image Classification Service
model : ResNet50_vd
## Prepare model
```
sh get_model.sh
```
## Start web service
```
python image_classification_service.py serving_server_model/ workdir/ 9393
```
## Prediction
```
python image_http_client.py
```
## Start rpc service
```
python image_server.py serving_server_model/ 9393
```
## Prediction
```
python image_rpc_client.py serving_client_conf/serving_client_conf.prototxt
```
......@@ -4,19 +4,28 @@
### 模型及配置文件获取
```
wget https://paddle-serving.bj.bcebos.com/imagenet-example/conf_and_model.tar.gz
tar -xzvf conf_and_model.tar.gz
sh get_model.sh
```
### 执行预测服务
### 执行wb service预测服务
启动server端
```
python image_classification_service.py conf_and_model/serving_server_model workdir
python image_classification_service.py conf_and_model/serving_server_model workdir 9393
```
client端进行预测
```
python image_http_client.py
```
### 执行rpc service预测服务
启动server端
```
python image_server.py conf_and_model/serving_server_model workdir 9393
```
client端进行预测
```
python image_rpc_client.py conf_and_model/serving_client_conf/serving_client_conf.prototxt
```
*server端示例中服务端口为9393端口,client端示例中数据来自./data文件夹,server端地址为本地9393端口,可根据实际情况更改脚本。*
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册