README.md 628 字节
Newer Older
1 2

## Prepare
Z
fix  
zhangjun 已提交
3 4 5 6
### download model and extract
```
wget https://paddle-serving.bj.bcebos.com/models/xpu/ernie.tgz
```
7 8 9 10
### convert model
```
python3 -m paddle_serving_client.convert --dirname erine
```
Z
fix  
zhangjun 已提交
11 12 13 14 15 16
### Getting Dict and Sample Dataset

```
sh get_data.sh
```
this script will download Chinese Dictionary File vocab.txt and Chinese Sample Data data-c.txt
17 18 19 20 21 22 23 24 25 26 27 28 29 30

## RPC Service

### Start Service

```
python3 -m paddle_serving_server.serve --model serving_server --port 7704 --use_lite --use_xpu --ir_optim
```

### Client Prediction

```
head data-c.txt | python3 ernie_client.py --model serving_client/serving_client_conf.prototxt
```